From 2b74f7f812ae16c53c804b09271d4060d9f3971e Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Mon, 18 Nov 2013 08:06:09 -0800 Subject: [PATCH] Switch to 59.94 fps rather than 60. --- Core/HLE/sceDisplay.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/HLE/sceDisplay.cpp b/Core/HLE/sceDisplay.cpp index 8ecff6f636..eaf7c85043 100644 --- a/Core/HLE/sceDisplay.cpp +++ b/Core/HLE/sceDisplay.cpp @@ -96,7 +96,7 @@ static double nextFrameTime; static int numVBlanksSinceFlip; static u64 frameStartTicks; -const float hCountPerVblank = 285.72f; // insprired by jpcsp +const float hCountPerVblank = 286.0f; std::vector vblankWaitingThreads; @@ -111,7 +111,7 @@ std::vector vblankListeners; // The vblank period is 731.5 us (0.7315 ms) const double vblankMs = 0.7315; -const double frameMs = 1000.0 / 60.0; +const double frameMs = 1001.0 / 60.0; enum { PSP_DISPLAY_SETBUF_IMMEDIATE = 0,