diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-06-07 22:04:02 -0400 | 
|---|---|---|
| committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-06-07 22:04:02 -0400 | 
| commit | 3e6d81a00899f7f488bfedd849edb64f927b124d (patch) | |
| tree | a25535f33676fb5faa496ff3db649ed73403bfcd /src/core/hle | |
| parent | 2e1e7254436b032f133372c76d9484aa756d56df (diff) | |
nvdisp: Fix SingleCore frametime reporting
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp | 2 | 
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();  } | 
