Skip to content

Commit 619142b

Browse files
committed
Fix automap menu related crash
1 parent 1b32f11 commit 619142b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

prboom2/src/m_menu.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2080,7 +2080,8 @@ static void M_DrawSetting(const setup_menu_t* s, int y)
20802080

20812081
if (!ch) // don't show this item in automap mode
20822082
V_DrawNamePatch(x+1,y,0,"M_PALNO", CR_DEFAULT, VPT_STRETCH);
2083-
M_BlinkingArrowRight(s);
2083+
if (M_ItemSelected(s) && !setup_select)
2084+
M_DrawString(x + 8, y, color, " <");
20842085
return;
20852086
}
20862087

0 commit comments

Comments
 (0)