mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-11 17:22:17 +00:00
Fix apostrophe and quotation mark locations for not-yet-completed time in Time Attack modes
This commit is contained in:
parent
c758ba3062
commit
dd0e3ca5f1
1 changed files with 5 additions and 1 deletions
|
|
@ -1960,7 +1960,11 @@ void K_drawKartTimestamp(tic_t drawtime, INT32 TX, INT32 TY, INT32 splitflags, U
|
|||
;
|
||||
else if (mode && !drawtime)
|
||||
{
|
||||
V_DrawTimerString(TX, TY+3, splitflags, "--'--\"--");
|
||||
// apostrophe location _'__ __
|
||||
V_DrawTimerString(TX+24, TY+3, splitflags, va("'"));
|
||||
|
||||
// quotation mark location _ __"__
|
||||
V_DrawTimerString(TX+60, TY+3, splitflags, va("\""));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue