fix naming for global var

This commit is contained in:
itsmattkc
2023-04-29 14:39:59 -07:00
parent 5d487ab790
commit d55523a1ed
3 changed files with 6 additions and 6 deletions

View File

@@ -568,14 +568,14 @@ void Isle::tick(BOOL sleepIfNotNextFrame)
if (!Timer()) return;
long currentTime = Timer()->GetRealTime();
if (currentTime < _last_frame_time) {
_last_frame_time = -this->m_frameDelta;
if (currentTime < g_lastFrameTime) {
g_lastFrameTime = -this->m_frameDelta;
}
if (this->m_frameDelta + _last_frame_time < currentTime) {
if (this->m_frameDelta + g_lastFrameTime < currentTime) {
if (!Lego()->vtable40()) {
TickleManager()->vtable08();
}
_last_frame_time = currentTime;
g_lastFrameTime = currentTime;
if (_DAT_004101bc == 0) {
return;