Skip to content

Commit

Permalink
adjust menu initiation and namemaker shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
timbergeron committed Oct 30, 2023
1 parent 8cf646f commit 1312fb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Quake/host.c
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,6 @@ void Host_Init (void)

V_Init ();
Chase_Init ();
M_Init (); // woods move this up for tab complete system #iwtabcomplete
ExtraMaps_Init (); //johnfitz
Modlist_Init (); //johnfitz
DemoList_Init (); //ericw
Expand All @@ -1484,6 +1483,7 @@ void Host_Init (void)
BGM_Init();
Sbar_Init ();
CL_Init ();
M_Init(); // woods move this up for tab complete system #iwtabcomplete
}

LOC_Init (); // for 2021 rerelease support.
Expand Down
2 changes: 1 addition & 1 deletion Quake/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -3535,6 +3535,7 @@ static struct
{"help", M_Menu_Help_f},
{"menu_quit", M_Menu_Quit_f},
{"menu_credits", M_Menu_Credits_f}, // needed by the 2021 re-release
{"namemaker", M_Shortcut_NameMaker_f}, // woods
};

//=============================================================================
Expand Down Expand Up @@ -3668,7 +3669,6 @@ void M_Init (void)
Cmd_AddCommand ("togglemenu", M_ToggleMenu_f);
Cmd_AddCommand ("menu_cmd", MQC_Command_f);
Cmd_AddCommand ("menu_restart", M_MenuRestart_f); //qss still loads progs on hunk, so we can't do this safely.
Cmd_AddCommand ("namemaker", M_Shortcut_NameMaker_f); // woods #namemaker

if (!MQC_Init())
MQC_Shutdown();
Expand Down

0 comments on commit 1312fb3

Please sign in to comment.