From 38122e4fa5ecf1d6ada977e43e951d9c2135b3de Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Tue, 28 Dec 2021 05:39:50 -0500 Subject: [PATCH] Fix cursor appearing before P1 has pressed start --- src/k_menudraw.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/k_menudraw.c b/src/k_menudraw.c index 8bab9160c..cf49e2669 100644 --- a/src/k_menudraw.c +++ b/src/k_menudraw.c @@ -1021,8 +1021,11 @@ void M_DrawCharacterSelect(void) M_DrawCharSelectCursor(i); } - // Draw the priority player over the other ones - M_DrawCharSelectCursor(priority); + if (setup_numplayers > 0) + { + // Draw the priority player over the other ones + M_DrawCharSelectCursor(priority); + } } // DIFFICULTY SELECT