[quake3-commits] r1556 - trunk/code/client
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Thu May 21 20:34:37 EDT 2009
Author: thilo
Date: 2009-05-21 20:34:37 -0400 (Thu, 21 May 2009)
New Revision: 1556
Modified:
trunk/code/client/cl_ui.c
Log:
Minor fix for server infostring. Thanks to slacker
Modified: trunk/code/client/cl_ui.c
===================================================================
--- trunk/code/client/cl_ui.c 2009-05-21 21:10:25 UTC (rev 1555)
+++ trunk/code/client/cl_ui.c 2009-05-22 00:34:37 UTC (rev 1556)
@@ -296,7 +296,7 @@
Info_SetValueForKey( info, "game", server->game);
Info_SetValueForKey( info, "gametype", va("%i",server->gameType));
Info_SetValueForKey( info, "nettype", va("%i",server->netType));
- Info_SetValueForKey( info, "addr", NET_AdrToString(server->adr));
+ Info_SetValueForKey( info, "addr", NET_AdrToStringwPort(server->adr));
Info_SetValueForKey( info, "punkbuster", va("%i", server->punkbuster));
Q_strncpyz(buf, info, buflen);
} else {
More information about the quake3-commits
mailing list