mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-03-23 01:11:21 +00:00
Reimplimented evil #define in menu.c cuz it wasn't working otherwise :)
Fixed a bug that im still not sure why Adamel implimented, he had it assuming that every target has 15 entries, when they don't. -- Eric Windisch
This commit is contained in:
parent
e36fbe4d88
commit
e29fc9165e
1 changed files with 5 additions and 1 deletions
|
@ -1064,10 +1064,14 @@ again:
|
|||
|
||||
|
||||
#define SLIDER_RANGE 10
|
||||
#define LOCAL_OPTIONS_ITEMS 12
|
||||
|
||||
extern int VID_options_items;
|
||||
static int options_cursor;
|
||||
#define options_items 15
|
||||
|
||||
// 12 in following is # of local entries
|
||||
#define options_items (VID_options_items+LOCAL_OPTIONS_ITEMS)
|
||||
|
||||
|
||||
void M_Menu_Options_f (void)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue