Skip to content

Commit

Permalink
Use M_DrawCheckbox instead of M_Print in a couple of places
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-drexler committed Sep 3, 2024
1 parent ef55341 commit 05a04b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Quake/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -4309,7 +4309,7 @@ static void M_Options_DrawItem (int y, int item)
break;

case OPT_VIEWBOB:
M_Print (x, y, cl_bob.value ? "On" : "Off");
M_DrawCheckbox (x, y, cl_bob.value);
break;

case OPT_ANGLELIMITS:
Expand Down Expand Up @@ -4421,7 +4421,7 @@ static void M_Options_DrawItem (int y, int item)
M_Print (x, y, VID_Menu_GetAlphaModeDesc ());
break;
case OPT_DLIGHTS:
M_Print (x, y, r_dynamic.value ? "On" : "Off");
M_DrawCheckbox (x, y, r_dynamic.value);
break;
case OPT_SOFTEMU:
M_Print (x, y, VID_Menu_GetSoftEmuDesc ());
Expand Down

0 comments on commit 05a04b4

Please sign in to comment.