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-Url: https://git.gag.com/?a=commitdiff_plain;h=76d597ba069d953010609c44b5030091dc2c3024;hp=97dc44381b6d99ace326afae0aa606765e6dcddc;p=fw%2Faltos 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) {