mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-29 03:53:44 +00:00
fix
This commit is contained in:
parent
6d1d60f699
commit
2a69f34f93
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue