mirror of https://github.com/stella-emu/stella.git
change rewind intervals to 5s (1s internally)
This commit is contained in:
parent
4c3c1931d6
commit
d18c16639f
|
@ -179,14 +179,14 @@ void MinUICommandDialog::handleCommand(CommandSender* sender, int cmd,
|
|||
break;
|
||||
|
||||
case kRewindCmd:
|
||||
// rewind 3s
|
||||
instance().state().rewindStates(1);
|
||||
// rewind 5s
|
||||
instance().state().rewindStates(5);
|
||||
updateWinds();
|
||||
break;
|
||||
|
||||
case kUnwindCmd:
|
||||
// unwind 3s
|
||||
instance().state().unwindStates(1);
|
||||
// unwind 5s
|
||||
instance().state().unwindStates(5);
|
||||
updateWinds();
|
||||
break;
|
||||
|
||||
|
|
|
@ -56,11 +56,11 @@ SettingsR77::SettingsR77()
|
|||
|
||||
setTemporary("minimal_ui", true);
|
||||
setPermanent("dev.settings", false);
|
||||
// record states for 150 seconds
|
||||
// record states for 60 seconds
|
||||
setPermanent("plr.timemachine", true);
|
||||
setPermanent("plr.tm.size", 50);
|
||||
setPermanent("plr.tm.uncompressed", 50);
|
||||
setPermanent("plr.tm.interval", "3s");
|
||||
setPermanent("plr.tm.size", 60);
|
||||
setPermanent("plr.tm.uncompressed", 60);
|
||||
setPermanent("plr.tm.interval", "1s");
|
||||
|
||||
setPermanent("threads", "1");
|
||||
|
||||
|
|
Loading…
Reference in New Issue