MenuScreens.cpp: Add +/- 10 Speed limit buttons to make it easier to reset the value above 60, and remove upper limit.

This commit is contained in:
The Dax 2013-07-12 05:08:53 -04:00
parent 05f019d434
commit 216ee1b163

View file

@ -1196,8 +1196,12 @@ void GraphicsScreenP3::render() {
if(g_Config.iFpsLimit > 10)
g_Config.iFpsLimit -= 1;
if (UIButton(GEN_ID, hlinear1, 50, 0, gs->T("+1"), ALIGN_LEFT))
if(g_Config.iFrameSkip < 240)
g_Config.iFpsLimit += 1;
if (UIButton(GEN_ID, hlinear1, 65, 0, gs->T("-10"), ALIGN_LEFT))
if(g_Config.iFpsLimit > 10)
g_Config.iFpsLimit -= 10;
if (UIButton(GEN_ID, hlinear1, 65, 0, gs->T("+10"), ALIGN_LEFT))
g_Config.iFpsLimit += 10;
y += 20;
} else