Skip to content

Commit

Permalink
Fix console opening when using pointer in menu to move sliders
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Feb 8, 2025
1 parent 59cff77 commit ce91b89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/m_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -3173,7 +3173,7 @@ bool M_Responder(event_t *ev)
}

// Console
if ((key == keyboardconsole || key == keyboardconsole2)
if (key && (key == keyboardconsole || key == keyboardconsole2)
&& !paused && !splashscreen && !keydown && !messagetoprint && !savestringenter)
{
keydown = key;
Expand Down

0 comments on commit ce91b89

Please sign in to comment.