mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-09-02 06:42:41 +02:00
Fix turbo mode not working on iOS if dynamic speed is not enabled
This commit is contained in:
@@ -835,7 +835,7 @@ didReceiveNotificationResponse:(UNNotificationResponse *)response
|
||||
_rewindOver = false;
|
||||
}
|
||||
|
||||
if (_runMode == GBRunModeNormal || [[NSUserDefaults standardUserDefaults] boolForKey:@"GBDynamicSpeed"]) {
|
||||
if (_runMode == GBRunModeNormal || ![[NSUserDefaults standardUserDefaults] boolForKey:@"GBDynamicSpeed"]) {
|
||||
if (_runMode == GBRunModeTurbo) {
|
||||
double multiplier = [[NSUserDefaults standardUserDefaults] doubleForKey:@"GBTurboSpeed"];
|
||||
GB_set_turbo_mode(&_gb, multiplier == 1, false);
|
||||
|
Reference in New Issue
Block a user