Use EXEC_NOW instead of hardcoded 0 in cl_ui.c

This commit is contained in:
Zack Middleton 2011-09-09 21:50:45 +00:00
parent 72d00c568b
commit b7fa3e7073

View file

@ -765,7 +765,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)))