mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-02-19 18:20:52 +00:00
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.
This commit is contained in:
parent
10224b1d00
commit
af70d33ba9
1 changed files with 2 additions and 7 deletions
|
@ -1061,20 +1061,15 @@ void M_SinglePlayer_Key (key) {
|
||||||
#define STAT_Y 122
|
#define STAT_Y 122
|
||||||
|
|
||||||
int m_multip_cursor=0;
|
int m_multip_cursor=0;
|
||||||
int m_multip_mins;
|
int m_multip_mins=0;
|
||||||
int m_multip_maxs;
|
int m_multip_maxs=10;
|
||||||
int m_multip_horiz;
|
int m_multip_horiz;
|
||||||
int m_multip_state;
|
|
||||||
|
|
||||||
void M_Menu_MultiPlayer_f (void) {
|
void M_Menu_MultiPlayer_f (void) {
|
||||||
key_dest = key_menu;
|
key_dest = key_menu;
|
||||||
m_entersound = true;
|
m_entersound = true;
|
||||||
m_state = m_multiplayer;
|
m_state = m_multiplayer;
|
||||||
// m_multip_cursor = 0;
|
|
||||||
m_multip_mins = 0;
|
|
||||||
m_multip_maxs = 10;
|
|
||||||
m_multip_horiz = 0;
|
m_multip_horiz = 0;
|
||||||
m_multip_state = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void M_MultiPlayer_Draw (void) {
|
void M_MultiPlayer_Draw (void) {
|
||||||
|
|
Loading…
Reference in a new issue