mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-01-20 07:30:49 +00:00
Changed some stuff in menu.c to remove someone's evil #define of
options_items, rather made options_items a static int and changed 'static int local_options_items = 13' into '#define local_options_items 13' (non-evil define ;) -- eric windisch
This commit is contained in:
parent
5f62210608
commit
212367ad9a
1 changed files with 2 additions and 2 deletions
|
@ -1070,8 +1070,8 @@ again:
|
|||
|
||||
extern int VID_options_items;
|
||||
static int options_cursor;
|
||||
static int local_options_items = 13;
|
||||
#define options_items (local_options_items + VID_options_items)
|
||||
#define LOCAL_OPTIONS_ITEMS 13
|
||||
static int options_items=(LOCAL_OPTIONS_ITEMS + VID_options_items);
|
||||
|
||||
void M_Menu_Options_f (void)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue