Skip to content

Commit

Permalink
Don't open console with ~ key while entering savegame description
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Nov 23, 2024
1 parent 791020a commit 87b1797
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/m_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -3175,15 +3175,15 @@ bool M_Responder(event_t *ev)
}

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

if (menuactive)
{
functionkey = 0;
SDL_StopTextInput();
savestringenter = false;
M_CloseMenu();
D_FadeScreen(false);

Expand Down

0 comments on commit 87b1797

Please sign in to comment.