summaryrefslogtreecommitdiff
path: root/src/client/cl_main.c
diff options
context:
space:
mode:
authorThilo Schulz <arny@ats.s.bawue.de>2011-05-15 14:08:03 +0000
committerTim Angus <tim@ngus.net>2013-01-09 22:27:37 +0000
commitc253917e539fa6a6196cdea8f1733b72feb30107 (patch)
tree71f37869dd9aebdd87d4b3f25604cd155ce4f6d3 /src/client/cl_main.c
parent81d3670b5ba3b7e09463a957f9b4879c4a989ddc (diff)
- Remove Q_strrchr(), replace with standard, portable strrchr() - Add strrchr() to bg_lib.c, patch by DevHC
Diffstat (limited to 'src/client/cl_main.c')
-rw-r--r--src/client/cl_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/cl_main.c b/src/client/cl_main.c
index c532e175..2507614a 100644
--- a/src/client/cl_main.c
+++ b/src/client/cl_main.c
@@ -1018,7 +1018,7 @@ void CL_PlayDemo_f( void ) {
CL_Disconnect( qtrue );
// check for an extension .DEMOEXT_?? (?? is protocol)
- ext_test = Q_strrchr(arg, '.');
+ ext_test = strrchr(arg, '.');
if(ext_test && !Q_stricmpn(ext_test + 1, DEMOEXT, ARRAY_LEN(DEMOEXT) - 1))
{