From 8b42e6efb331b0b70a5448774dcde3c61b4a901f Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Fri, 2 Aug 2024 18:48:52 +0530 Subject: [PATCH] fix this bug --- src/fs/TorqueFileSystem.hx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/fs/TorqueFileSystem.hx b/src/fs/TorqueFileSystem.hx index ed774242..e6302ce1 100644 --- a/src/fs/TorqueFileSystem.hx +++ b/src/fs/TorqueFileSystem.hx @@ -8,12 +8,8 @@ class TorqueFileEntry extends LocalEntry { #if macro onReady(); #else - // if (Settings.optionsSettings.fastLoad) - onReady(); - // else { - // if (onReady != null) - // haxe.Timer.delay(onReady, 1); - // } + if (onReady != null) + haxe.Timer.delay(onReady, 1); #end } }