(svn r1381) Fix: [ 1095143 ] Servers list now also saves the port

This commit is contained in:
dominik 2005-01-05 09:59:45 +00:00
parent c4b682f996
commit e31da8532e

View File

@ -878,7 +878,7 @@ void NetworkRebuildHostList()
NetworkGameList *item = _network_game_list;
while (item != NULL && i != lengthof(_network_host_list)) {
if (item->manually)
_network_host_list[i++] = strdup(item->info.hostname);
_network_host_list[i++] = str_fmt("%s:%i", item->info.hostname, item->port);
item = item->next;
}