mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-11 18:51:16 +00:00
Update isle.cpp
Renamed _DAT_004101bc to g_startDelayTimer.
This commit is contained in:
parent
d336f65abe
commit
4777dbeea1
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user