(svn r1012) -Fix: [Network] Endless loop if a server was offline (WizKid)

This commit is contained in:
truelight 2004-12-10 22:01:17 +00:00
parent 72559a785e
commit 8dc2405ad6
1 changed files with 7 additions and 7 deletions

View File

@ -134,13 +134,13 @@ static void NetworkGameWindowWndProc(Window *w, WindowEvent *e)
// draw flag according to server language
DrawSprite(SPR_FLAGS_BASE + cur_item->info.server_lang, 206, y);
}
cur_item = cur_item->next;
y += NET_PRC__SIZE_OF_ROW;
if (++n == w->vscroll.cap) { break;} // max number of games in the window
}
}
}
// right menu
GfxFillRect(252, 23, 468, 65, 157);