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; break;
case kRewindCmd: case kRewindCmd:
// rewind 3s // rewind 5s
instance().state().rewindStates(1); instance().state().rewindStates(5);
updateWinds(); updateWinds();
break; break;
case kUnwindCmd: case kUnwindCmd:
// unwind 3s // unwind 5s
instance().state().unwindStates(1); instance().state().unwindStates(5);
updateWinds(); updateWinds();
break; break;

View File

@ -56,11 +56,11 @@ SettingsR77::SettingsR77()
setTemporary("minimal_ui", true); setTemporary("minimal_ui", true);
setPermanent("dev.settings", false); setPermanent("dev.settings", false);
// record states for 150 seconds // record states for 60 seconds
setPermanent("plr.timemachine", true); setPermanent("plr.timemachine", true);
setPermanent("plr.tm.size", 50); setPermanent("plr.tm.size", 60);
setPermanent("plr.tm.uncompressed", 50); setPermanent("plr.tm.uncompressed", 60);
setPermanent("plr.tm.interval", "3s"); setPermanent("plr.tm.interval", "1s");
setPermanent("threads", "1"); setPermanent("threads", "1");