Fix crash when pressing delete button in server browser and no server is selected.

A check for that was there, but was comparing an unsigned variable to
-1, which doesn't work.
This commit is contained in:
Jürgen Doser 2013-01-22 16:55:50 +01:00
parent 26a0efae23
commit f214940c96
1 changed files with 1 additions and 1 deletions

View File

@ -1053,7 +1053,7 @@ bool GUIMainMenu::OnEvent(const SEvent& event)
}
case GUI_ID_SERVERLIST_DELETE: {
gui::IGUIListBox *serverlist = (gui::IGUIListBox*)getElementFromId(GUI_ID_SERVERLIST);
u16 selected = ((gui::IGUIListBox*)serverlist)->getSelected();
s32 selected = ((gui::IGUIListBox*)serverlist)->getSelected();
if (selected == -1) return true;
ServerList::deleteEntry(m_data->servers[selected]);
m_data->servers = ServerList::getLocal();