mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-10 08:44:25 +00:00
Merge branch 'rypo_ta_command_fixup' into 'master'
Improve a couple of debug commands See merge request kart-krew-dev/ring-racers!17
This commit is contained in:
commit
f970151789
1 changed files with 5 additions and 2 deletions
|
|
@ -9508,6 +9508,7 @@ void Command_dumprrautomedaltimes(void)
|
|||
);
|
||||
}
|
||||
fclose(out);
|
||||
CONS_Printf("Medal times written to %s\n", outname);
|
||||
}
|
||||
|
||||
void Command_Platinums(void)
|
||||
|
|
@ -9558,8 +9559,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