(svn r15931) -Codechange: let the host and ban lists use of SmallVector.

This commit is contained in:
rubidium
2009-04-03 12:49:58 +00:00
parent 825aa87e80
commit bc7a870a61
8 changed files with 41 additions and 78 deletions

View File

@@ -50,7 +50,7 @@ static void NetworkGameListHandleDelayedInsert()
strecpy(item->info.hostname, ins_item->info.hostname, lastof(item->info.hostname));
item->online = false;
}
item->manually = ins_item->manually;
item->manually |= ins_item->manually;
UpdateNetworkGameWindow(false);
}
free(ins_item);