mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix "platinums" command time differences
They never accounted for differences above 1 minute.
This commit is contained in:
parent
67b72a1c44
commit
ddee1675a1
1 changed files with 4 additions and 2 deletions
|
|
@ -9550,8 +9550,10 @@ void Command_Platinums(void)
|
|||
}
|
||||
else
|
||||
{
|
||||
CONS_Printf(", %s (+%d:%02d)", stafftime.second.c_str(),
|
||||
G_TicsToSeconds(stafftime.first - platinumtime), G_TicsToCentiseconds(stafftime.first - platinumtime));
|
||||
CONS_Printf(", %s (+%d:%02d:%02d)", stafftime.second.c_str(),
|
||||
G_TicsToMinutes(stafftime.first - platinumtime, true),
|
||||
G_TicsToSeconds(stafftime.first - platinumtime),
|
||||
G_TicsToCentiseconds(stafftime.first - platinumtime));
|
||||
}
|
||||
|
||||
names[stafftime.second]++;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue