OpenGL: Fix inverted conditional for counter flush from #4471 (#4560)

Fixes OpenGL.
This commit is contained in:
riperiperi 2023-03-18 23:39:05 +00:00 committed by GitHub
parent 5131b71437
commit b2623dc27d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,7 @@ namespace Ryujinx.Graphics.OpenGL.Queries
{ {
result = Marshal.ReadInt64(_bufferMap); result = Marshal.ReadInt64(_bufferMap);
return WaitingForValue(result); return !WaitingForValue(result);
} }
public long AwaitResult(AutoResetEvent wakeSignal = null) public long AwaitResult(AutoResetEvent wakeSignal = null)