Skip to content

Commit

Permalink
Minor fixes in the menu
Browse files Browse the repository at this point in the history
  • Loading branch information
j0zzz committed Dec 23, 2024
1 parent 1366908 commit 6ce8304
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trunk/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -2930,7 +2930,7 @@ void M_Misc_Draw(void)
M_Print_GetPoint(16, 40, &lx, &ly, " Power Bunnyhopping", misc_cursor == 1);
M_DrawCheckbox(220, 40, cl_forwardspeed.value == 200 && (in_speed.state & 1));

M_Print_GetPoint(16, 48, &lx, &ly, " Demo player", misc_cursor == 2);
M_Print_GetPoint(16, 48, &lx, &ly, " Demo player UI", misc_cursor == 2);
M_DrawCheckbox(220, 48, cl_demoui.value);

M_Print_GetPoint(16, 56, &lx, &ly, " Demo playback speed", misc_cursor == 3);
Expand Down Expand Up @@ -3657,7 +3657,7 @@ void M_Hud_MouseSlider(int k, const mouse_state_t *ms)
switch (hud_cursor)
{
case 0: // sbar scale
M_Mouse_Select_Column(&hud_slider_sbarscale_window, ms, 7, &slider_pos);
M_Mouse_Select_Column(&hud_slider_sbarscale_window, ms, 11, &slider_pos);
scr_sbarscale_amount.value = bound(1, (slider_pos * 0.5) + 1, scr_sbarscale_amount_max);
Cvar_SetValue(&scr_sbarscale_amount, scr_sbarscale_amount.value);
break;
Expand Down

0 comments on commit 6ce8304

Please sign in to comment.