From 609cf594b65b92c2d8e2041f67dcf01f40896e4d Mon Sep 17 00:00:00 2001 From: Ben Millwood Date: Sat, 3 Oct 2009 12:10:20 +0000 Subject: * Fix spectator occasionally displaying crosshairs * Fix reference to function not defined in .sos --- src/cgame/cg_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cgame') diff --git a/src/cgame/cg_main.c b/src/cgame/cg_main.c index 55396704..9f7d26d5 100644 --- a/src/cgame/cg_main.c +++ b/src/cgame/cg_main.c @@ -1440,9 +1440,9 @@ static qboolean CG_ClientIsReady( int clientNum ) if( isdigit( *s ) ) val = *s - '0'; - else if( isxlower( *s ) ) + else if( *s >= 'a' && *s <= 'f' ) val = 10 + *s - 'a'; - else if( isxupper( *s ) ) + else if( *s >= 'A' && *s <= 'F' ) val = 10 + *s - 'A'; else return qfalse; -- cgit