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:
Eric Windisch 2000-01-09 07:52:39 +00:00
parent e36fbe4d88
commit e29fc9165e

View file

@ -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)
{