From e688febe63b0ada9ad62909dd325b77c78ff8094 Mon Sep 17 00:00:00 2001 From: Eric Windisch Date: Sun, 9 Jan 2000 20:34:01 +0000 Subject: [PATCH] The previous 2 commits were on the rendering of menu.c This commit makes it functional :) Wierd bug where fullscreen switch isn't working, must fix... -- Eric Windisch --- common/vid_x.c | 1 - uquake/menu.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/common/vid_x.c b/common/vid_x.c index 40036be..18d6421 100644 --- a/common/vid_x.c +++ b/common/vid_x.c @@ -1102,7 +1102,6 @@ void VID_ExtraOptionCmd(int option_cursor) case 1: // _windowed_mouse Cvar_SetValue ("_windowed_mouse", !_windowed_mouse.value); break; - } } diff --git a/uquake/menu.c b/uquake/menu.c index af33b6b..6d8ba1b 100644 --- a/uquake/menu.c +++ b/uquake/menu.c @@ -1163,7 +1163,7 @@ void M_AdjustSliders (int dir) break; default: - VID_ExtraOptionCmd(options_cursor-(options_items-4)); + VID_ExtraOptionCmd(L_OPTIONS_ITEMS-options_cursor); } }