diff options
author | Keith Packard <keithp@keithp.com> | 2014-09-13 15:51:50 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-09-13 15:59:50 -0700 |
commit | 75d5368cb2a95f3f7385952669a14765460f549d (patch) | |
tree | f809de2beea361adb8fa106136b79aab3841adcf | |
parent | 04b5cc37659b1b3d6b62f1ef17b17c0492434cba (diff) |
altosui: Fix --replay to run in realtime after boost
I added the ability to rapidly replay files for AltosDroid to recover
from a crash, but didn't change AltosUI to use realtime mode again.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | altosui/AltosUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index 0aa5d03c..cc1cf6f2 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -463,7 +463,7 @@ public class AltosUI extends AltosUIFrame { AltosStateIterable states = record_iterable(file); if (states == null) return null; - return new AltosReplayReader(states.iterator(), file); + return new AltosReplayReader(states.iterator(), file, true); } static boolean process_replay(File file) { |