diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs b/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs index 986c02aba..6fc931f78 100644 --- a/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs +++ b/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs @@ -44,7 +44,7 @@ namespace Ryujinx.Graphics.Gpu.Engine.Threed /// private enum ReportCounterType { - Zero = 0, + Payload = 0, InputVertices = 1, InputPrimitives = 3, VertexShaderInvocations = 5, @@ -169,8 +169,8 @@ namespace Ryujinx.Graphics.Gpu.Engine.Threed switch (type) { - case ReportCounterType.Zero: - resultHandler(null, 0); + case ReportCounterType.Payload: + resultHandler(null, (ulong)_state.State.SemaphorePayload); break; case ReportCounterType.SamplesPassed: counter = _context.Renderer.ReportCounter(CounterType.SamplesPassed, resultHandler, false);