diff --git a/src/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs index a9a96d54a..880c93840 100644 --- a/src/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs +++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs @@ -165,7 +165,11 @@ namespace Ryujinx.Graphics.Gpu.Engine.Threed Timestamp = ticks, }; - if (counter?.Invalid != true) + if (result <= 0) + { + return; + } + else if (counter?.Invalid != true) { _channel.MemoryManager.Write(gpuVa, counterData); }