From ec2d406222267def73269fedae9e657c5ef0995f Mon Sep 17 00:00:00 2001 From: NepDisk Date: Fri, 27 Mar 2026 23:42:14 -0400 Subject: [PATCH] Fix titlecard round count --- src/st_stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/st_stuff.c b/src/st_stuff.c index 517d47e61..84e74def2 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -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: