bump Increase/Decrease speed maximum from 1600% to 3200%

This commit is contained in:
adelikat 2014-01-10 16:49:17 +00:00
parent c2b8879303
commit eabf24c384
1 changed files with 10 additions and 2 deletions

View File

@ -2184,10 +2184,14 @@ namespace BizHawk.Client.EmuHawk
{
newp = 800;
}
else
else if (oldp < 1600)
{
newp = 1600;
}
else
{
newp = 3200;
}
SetSpeedPercent(newp);
}
@ -2197,7 +2201,11 @@ namespace BizHawk.Client.EmuHawk
var oldp = Global.Config.SpeedPercent;
int newp;
if (oldp > 800)
if (oldp > 1600)
{
newp = 1600;
}
else if (oldp > 800)
{
newp = 800;
}