When waiting on CPU, do not return a time out error from EventWait (#2780)

* When waiting on CPU, do not return a time out error from EventWait

* And while I'm at it...
This commit is contained in:
gdkchan 2021-11-01 19:10:02 -03:00 committed by GitHub
parent c6015daf8d
commit e48530e9d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ namespace Ryujinx.Graphics.Gpu.Synchronization
{
public class SyncpointWaiterHandle
{
internal uint Threshold;
internal uint Threshold;
internal Action<SyncpointWaiterHandle> Callback;
}
}