From: Keith Packard Date: Sat, 13 Sep 2014 22:51:50 +0000 (-0700) Subject: altosui: Fix --replay to run in realtime after boost X-Git-Tag: bdale-altosdroid~23 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=75d5368cb2a95f3f7385952669a14765460f549d 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 --- 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) {