change rewind intervals to 5s (1s internally)

This commit is contained in:
thrust26 2019-04-26 22:14:03 +02:00
parent 4c3c1931d6
commit d18c16639f
2 changed files with 8 additions and 8 deletions

View File

@ -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;

View File

@ -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");