fixed pure server image issue

This commit is contained in:
Alfred Eriksson 2009-01-19 14:57:17 +00:00
parent 013df7ca24
commit b0ef334817

View file

@ -228,7 +228,7 @@ void MENUS::render_serverbrowser_serverlist(RECT view)
}
else if(id == COL_FLAG_PURE)
{
if(strncmp(item->gametype, "DM", 2) == 0 || strncmp(item->gametype, "TDM", 3) == 0 || strncmp(item->gametype, "CTF", 3) == 0)
if(strcmp(item->gametype, "DM") == 0 || strcmp(item->gametype, "TDM") == 0 || strcmp(item->gametype, "CTF") == 0)
{
// pure server
}