From cc78402fc8ace2ccc25c0a666475bbdfebc2927a Mon Sep 17 00:00:00 2001 From: Andrei Drexler Date: Wed, 11 May 2022 19:19:19 +0300 Subject: [PATCH] Move Mods from 3rd to 2nd slot in Options menu --- Quake/menu.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Quake/menu.c b/Quake/menu.c index 5e789b264..33cb7fbfe 100644 --- a/Quake/menu.c +++ b/Quake/menu.c @@ -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 } } @@ -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, @@ -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: