From b60b043cdbda1bbdf8451f76bc9f1d0d34d14799 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Fri, 9 Sep 2011 21:50:45 +0000 Subject: Use EXEC_NOW instead of hardcoded 0 in cl_ui.c --- src/client/cl_ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/client') diff --git a/src/client/cl_ui.c b/src/client/cl_ui.c index faa1237a..88e0e6d1 100644 --- a/src/client/cl_ui.c +++ b/src/client/cl_ui.c @@ -758,7 +758,7 @@ intptr_t CL_UISystemCalls( intptr_t *args ) { return 0; case UI_CMD_EXECUTETEXT: - if(args[1] == 0 + if(args[1] == EXEC_NOW && (!strncmp(VMA(2), "snd_restart", 11) || !strncmp(VMA(2), "vid_restart", 11) || !strncmp(VMA(2), "quit", 5))) -- cgit