Skip to content

Commit

Permalink
Move Mods from 3rd to 2nd slot in Options menu
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-drexler committed May 11, 2022
1 parent b8029e0 commit cc78402
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Quake/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ void M_Menu_Main_f (void)
{
extern int options_cursor;
m_main_cursor = MAIN_OPTIONS;
options_cursor = 3; // OPT_MODS
options_cursor = 1; // OPT_MODS
}
}

Expand Down Expand Up @@ -1451,10 +1451,10 @@ void M_Net_Mousemove (int cx, int cy)

enum
{
OPT_CUSTOMIZE = 0,
OPT_CONSOLE, // 1
OPT_DEFAULTS, // 2
OPT_CUSTOMIZE,
OPT_MODS,
OPT_CONSOLE,
OPT_DEFAULTS,
OPT_HUDSTYLE,
OPT_SBALPHA,
OPT_SCALE,
Expand Down Expand Up @@ -1757,7 +1757,7 @@ void M_Options_Draw (void)

// Draw the items in the order of the enum defined above:
// OPT_CUSTOMIZE:
M_Print (16, 32, " Controls");
M_Print (16, 32 + 8*OPT_CUSTOMIZE, " Controls");
// OPT_CONSOLE:
M_Print (16, 32 + 8*OPT_CONSOLE, " Goto console");
// OPT_DEFAULTS:
Expand Down

0 comments on commit cc78402

Please sign in to comment.