Fixed / worked around Am2900Machine not booting sometimes
authorDaniel Kirschten <daniel.kirschten@gmx.de>
Thu, 3 Oct 2019 10:53:57 +0000 (12:53 +0200)
committerDaniel Kirschten <daniel.kirschten@gmx.de>
Thu, 3 Oct 2019 10:54:55 +0000 (12:54 +0200)
plugins/net.mograsim.logic.core/src/net/mograsim/logic/core/timeline/PauseableTimeFunction.java

index 04c0fc8..7a6185e 100644 (file)
@@ -10,7 +10,7 @@ public class PauseableTimeFunction implements TimeFunction
 {
        private boolean paused = false;
        private long unpausedSysTime = 0, lastPausedInternalTime = 0;
-       private double speedFactor = 1;
+       private double speedFactor = 0;
 
        private final List<Consumer<Double>> simulTimeToRealTimeFactorChangedListeners = new ArrayList<>();