mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
More airtight roundqueue check
This commit is contained in:
parent
4c9d1b7425
commit
4132e04dcf
1 changed files with 1 additions and 1 deletions
|
|
@ -2426,7 +2426,7 @@ static void HU_DrawRankings(void)
|
|||
V_DrawString(4, 188, hilicol|V_SNAPTOBOTTOM|V_SNAPTOLEFT, gametypes[gametype]->name);
|
||||
|
||||
// Left hand side
|
||||
const boolean roundqueueinaction = (roundqueue.size > 0 && roundqueue.position > 0);
|
||||
const boolean roundqueueinaction = (roundqueue.position > 0 && roundqueue.position <= roundqueue.size);
|
||||
|
||||
if (roundqueueinaction
|
||||
&& roundqueue.entries[roundqueue.position-1].overridden == true)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue