mirror of
https://github.com/halpz/re3.git
synced 2025-01-06 20:05:27 +00:00
fix
This commit is contained in:
parent
6d1d60f699
commit
2a69f34f93
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue