From: Daniel Kirschten Date: Thu, 3 Oct 2019 10:53:57 +0000 (+0200) Subject: Fixed / worked around Am2900Machine not booting sometimes X-Git-Url: https://mograsim.net/gitweb/?a=commitdiff_plain;h=b8840982674bd3ef4b42913c91abe8badc9a8bd8;hp=99767fcd36ffe9d9d25a3cf4fd9ee1a623285834;p=Mograsim.git Fixed / worked around Am2900Machine not booting sometimes --- diff --git a/plugins/net.mograsim.logic.core/src/net/mograsim/logic/core/timeline/PauseableTimeFunction.java b/plugins/net.mograsim.logic.core/src/net/mograsim/logic/core/timeline/PauseableTimeFunction.java index 04c0fc8e..7a6185e8 100644 --- a/plugins/net.mograsim.logic.core/src/net/mograsim/logic/core/timeline/PauseableTimeFunction.java +++ b/plugins/net.mograsim.logic.core/src/net/mograsim/logic/core/timeline/PauseableTimeFunction.java @@ -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> simulTimeToRealTimeFactorChangedListeners = new ArrayList<>();