From d18c16639f99b83e616e5da9d063243d7e6611d8 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Fri, 26 Apr 2019 22:14:03 +0200 Subject: [PATCH] change rewind intervals to 5s (1s internally) --- src/gui/MinUICommandDialog.cxx | 8 ++++---- src/unix/r77/SettingsR77.cxx | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/gui/MinUICommandDialog.cxx b/src/gui/MinUICommandDialog.cxx index 75ae2b802..1d153e11b 100644 --- a/src/gui/MinUICommandDialog.cxx +++ b/src/gui/MinUICommandDialog.cxx @@ -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; diff --git a/src/unix/r77/SettingsR77.cxx b/src/unix/r77/SettingsR77.cxx index af6c4d7b3..53a9efc53 100644 --- a/src/unix/r77/SettingsR77.cxx +++ b/src/unix/r77/SettingsR77.cxx @@ -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");