Fix titlecard round count
This commit is contained in:
parent
c1bf171a3a
commit
ec2d406222
1 changed files with 1 additions and 1 deletions
|
|
@ -778,7 +778,7 @@ void ST_drawTitleCard(void)
|
|||
V_DrawLevelTitle(ttlnumxpos+12, bary+6, V_SNAPTOBOTTOM, actnum);
|
||||
|
||||
// TODO: a bit more elaborate?
|
||||
if (roundqueue.size > 0)
|
||||
if (roundqueue.position > 0 && roundqueue.position <= roundqueue.size)
|
||||
V_DrawCenteredString(BASEVIDWIDTH/2 + sub, bary+24, V_SNAPTOBOTTOM|V_YELLOWMAP, va("ROUND %d", roundqueue.roundnum));
|
||||
|
||||
luahook:
|
||||
|
|
|
|||
Loading…
Reference in a new issue