mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #2761 from thedax/master
MenuScreens: Add +/-10 VPS/Speed buttons under "Toggled Speed Limit".
This commit is contained in:
commit
10f9adb7dc
1 changed files with 5 additions and 1 deletions
|
@ -1198,8 +1198,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
|
||||
|
|
Loading…
Add table
Reference in a new issue