summaryrefslogtreecommitdiff
path: root/altosui
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2014-09-13 15:51:50 -0700
committerKeith Packard <keithp@keithp.com>2014-09-13 16:01:06 -0700
commit76d597ba069d953010609c44b5030091dc2c3024 (patch)
tree9b43b455df168bb17351f5ea1eaa7538d2065795 /altosui
parent97dc44381b6d99ace326afae0aa606765e6dcddc (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>
Diffstat (limited to 'altosui')
-rw-r--r--altosui/AltosUI.java2
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) {