From 4777dbeea1ba66d686b524f77a78e69f806e0ec0 Mon Sep 17 00:00:00 2001 From: TheEmeraldFalcon <58223546+TheEmeraldFalcon@users.noreply.github.com> Date: Sat, 10 Jun 2023 22:53:36 -0400 Subject: [PATCH] Update isle.cpp Renamed _DAT_004101bc to g_startDelayTimer. --- ISLE/isle.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/ISLE/isle.cpp b/ISLE/isle.cpp index 5438005a..4bb83a8c 100644 --- a/ISLE/isle.cpp +++ b/ISLE/isle.cpp @@ -571,13 +571,14 @@ void Isle::tick(BOOL sleepIfNotNextFrame) TickleManager()->Tickle(); } g_lastFrameTime = currentTime; - - if (_DAT_004101bc == 0) { + + /* hacky start delay. */ + if (g_startDelayTimer == 0) { return; } - - _DAT_004101bc--; - if (_DAT_004101bc != 0) { + /* could change to --g_startDelayTimer, but will mess with assembly. */ + g_startDelayTimer--; + if (g_startDelayTimer != 0) { return; }