mirror of
https://github.com/libretro/ppsspp.git
synced 2025-04-04 12:41:31 +00:00
Workaround MSVC bug causing spin in pause menu.
It seems to get the result -0.000, and not sleep at all... Forcing it to an int fixes it.
This commit is contained in:
parent
31f9d69e5a
commit
cb15c1ef96
@ -134,9 +134,10 @@ void Core_RunLoop()
|
|||||||
// Simple throttling to not burn the GPU in the menu.
|
// Simple throttling to not burn the GPU in the menu.
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (globalUIState != UISTATE_INGAME) {
|
if (globalUIState != UISTATE_INGAME) {
|
||||||
double sleepTime = 16.666 - (time_now_d() - startTime) * 1000.0;
|
double diffTime = time_now_d() - startTime;
|
||||||
if (sleepTime > 0.0)
|
int sleepTime = (int) (1000000.0 / 60.0) - (int) (diffTime * 1000000.0);
|
||||||
Sleep((int)sleepTime);
|
if (sleepTime > 0)
|
||||||
|
Sleep(sleepTime / 1000);
|
||||||
GL_SwapBuffers();
|
GL_SwapBuffers();
|
||||||
} else if (!Core_IsStepping()) {
|
} else if (!Core_IsStepping()) {
|
||||||
GL_SwapBuffers();
|
GL_SwapBuffers();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user