From af70d33ba967874a4d283361ccc63372b29f4c38 Mon Sep 17 00:00:00 2001 From: Brian Koropoff Date: Fri, 12 May 2000 00:57:57 +0000 Subject: [PATCH] Fixed a bug in the server address book that made it draw from the beginning of the list even when the cursor was somewhere else. Stupid me. --- qw_client/menu.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/qw_client/menu.c b/qw_client/menu.c index 96b7b48..b800daf 100644 --- a/qw_client/menu.c +++ b/qw_client/menu.c @@ -1061,20 +1061,15 @@ void M_SinglePlayer_Key (key) { #define STAT_Y 122 int m_multip_cursor=0; -int m_multip_mins; -int m_multip_maxs; +int m_multip_mins=0; +int m_multip_maxs=10; int m_multip_horiz; -int m_multip_state; void M_Menu_MultiPlayer_f (void) { key_dest = key_menu; m_entersound = true; m_state = m_multiplayer; -// m_multip_cursor = 0; - m_multip_mins = 0; - m_multip_maxs = 10; m_multip_horiz = 0; - m_multip_state = 0; } void M_MultiPlayer_Draw (void) {