summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-06-08 04:04:02 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2023-06-08 04:04:02 +0200
commit3e6d81a00899f7f488bfedd849edb64f927b124d (patch)
treea25535f33676fb5faa496ff3db649ed73403bfcd
parentcore_timing: Fix SingleCore cycle timer (diff)
downloadyuzu-3e6d81a00899f7f488bfedd849edb64f927b124d.tar
yuzu-3e6d81a00899f7f488bfedd849edb64f927b124d.tar.gz
yuzu-3e6d81a00899f7f488bfedd849edb64f927b124d.tar.bz2
yuzu-3e6d81a00899f7f488bfedd849edb64f927b124d.tar.lz
yuzu-3e6d81a00899f7f488bfedd849edb64f927b124d.tar.xz
yuzu-3e6d81a00899f7f488bfedd849edb64f927b124d.tar.zst
yuzu-3e6d81a00899f7f488bfedd849edb64f927b124d.zip
-rw-r--r--src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
index 5a5b2e305..0fe242e9d 100644
--- a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
@@ -51,8 +51,8 @@ void nvdisp_disp0::flip(u32 buffer_handle, u32 offset, android::PixelFormat form
stride, format, transform, crop_rect};
system.GPU().RequestSwapBuffers(&framebuffer, fences, num_fences);
- system.GetPerfStats().EndSystemFrame();
system.SpeedLimiter().DoSpeedLimiting(system.CoreTiming().GetGlobalTimeUs());
+ system.GetPerfStats().EndSystemFrame();
system.GetPerfStats().BeginSystemFrame();
}