1
0

Fix increase timing of MAINCNT

This commit is contained in:
otya128
2016-12-31 21:40:22 +09:00
parent 5dad7c4caf
commit 1f2b6578de

View File

@@ -864,6 +864,7 @@ class PetitComputer
}
}
}
maincntRender++;
while (SDL_PollEvent(&event))
{
switch (event.type)
@@ -982,7 +983,6 @@ class PetitComputer
long delay = (1000/60) - (cast(long)SDL_GetTicks() - profile);
if(delay > 0)
SDL_Delay(cast(uint)delay);
maincntRender++;
}
}
catch(Throwable t)