Skip to content

Commit

Permalink
Merge pull request #1172 from kitchen-ace/raven_menu
Browse files Browse the repository at this point in the history
Heretic & Hexen: any key opens the menu when not in a demo
  • Loading branch information
kitchen-ace authored Feb 22, 2024
2 parents 0f7d128 + 2ec5e46 commit d80f4a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/heretic/mn_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -2221,7 +2221,7 @@ boolean MN_Responder(event_t * event)
if (!MenuActive)
{
// [crispy] don't pop up the menu on other keys during a demo
if (key == key_menu_activate) //|| gamestate == GS_DEMOSCREEN || demoplayback)
if (key == key_menu_activate || gamestate == GS_DEMOSCREEN || (demoplayback && !singledemo))
{
MN_ActivateMenu();
return (true);
Expand Down
2 changes: 1 addition & 1 deletion src/hexen/mn_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -2225,7 +2225,7 @@ boolean MN_Responder(event_t * event)
if (!MenuActive)
{
// [crispy] don't pop up the menu on other keys during a demo
if (key == key_menu_activate) //|| gamestate == GS_DEMOSCREEN || demoplayback)
if (key == key_menu_activate || gamestate == GS_DEMOSCREEN || (demoplayback && !singledemo))
{
MN_ActivateMenu();
return (true);
Expand Down

0 comments on commit d80f4a1

Please sign in to comment.