1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2024-10-17 22:01:07 +00:00
This commit is contained in:
Nikolay 2021-08-27 19:53:51 +03:00 committed by GitHub
parent 6d1d60f699
commit 2a69f34f93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -209,7 +209,7 @@ void
COnscreenTimerEntry::ProcessForDisplayClock() COnscreenTimerEntry::ProcessForDisplayClock()
{ {
uint32 time = *CTheScripts::GetPointerToScriptVariable(m_nClockOffset); uint32 time = *CTheScripts::GetPointerToScriptVariable(m_nClockOffset);
sprintf(m_aClockBuffer, "%02d:%02d", time / 1000 / 60 % 100, sprintf(m_aClockBuffer, "%d:%02d", time / 1000 / 60 % 100,
time / 1000 % 60); time / 1000 % 60);
} }