Timer fix

This commit is contained in:
Joshua Granick
2018-09-28 14:56:50 -07:00
parent 737c37854f
commit 34fe382e21

View File

@@ -702,7 +702,7 @@ class NativeApplication {
if (timer != null) {
while (currentTime >= timer.mFireAt) {
if (timer.mRunning && currentTime >= timer.mFireAt) {
timer.mFireAt += timer.mTime;
timer.run ();