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 Matt Heins
parent 090907e7f9
commit 74b677fc74

View file

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