From 75d5368cb2a95f3f7385952669a14765460f549d Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sat, 13 Sep 2014 15:51:50 -0700 Subject: [PATCH] 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 --- altosui/AltosUI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.30.2