From 1a4f1c8177f7ee351cb0096e3456d055b97dc60a Mon Sep 17 00:00:00 2001 From: peter1138 Date: Thu, 16 Nov 2006 22:05:33 +0000 Subject: (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come. --- network.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network.c') diff --git a/network.c b/network.c index a90923966..73d7e7a0a 100644 --- a/network.c +++ b/network.c @@ -526,7 +526,7 @@ void ParseConnectionString(const char **player, const char **port, char *connect if (*p == '#') { *p = '\0'; *player = ++p; - while (IsValidAsciiChar(*p, CS_NUMERAL)) p++; + while (IsValidChar(*p, CS_NUMERAL)) p++; if (*p == '\0') break; } else if (*p == ':') { *port = p + 1; -- cgit v1.2.3-54-g00ecf