1
0
mirror of https://github.com/td512/re3.git synced 2026-04-20 00:02:53 +00:00
This commit is contained in:
Nikolay
2021-08-27 19:53:51 +03:00
committed by GitHub
parent 6d1d60f699
commit 2a69f34f93

View File

@@ -209,7 +209,7 @@ void
COnscreenTimerEntry::ProcessForDisplayClock()
{
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);
}