]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - prvm_exec.c
Rename qboolean to qbool
[xonotic/darkplaces.git] / prvm_exec.c
index dc86140cad0e7c8cbb34187672667a33e1f35011..eb4217d8e63dbf5ed526f2e6f70beee87f602c64 100644 (file)
@@ -909,7 +909,7 @@ static void PRVM_StatementCoverageEvent(prvm_prog_t *prog, mfunction_t *func, in
 #define OPC ((prvm_eval_t *)&globals[st->operand[2]])
 extern cvar_t prvm_traceqc;
 extern cvar_t prvm_statementprofiling;
-extern qboolean prvm_runawaycheck;
+extern qbool prvm_runawaycheck;
 
 #ifdef PROFILING
 #ifdef CONFIG_MENU
@@ -940,7 +940,7 @@ void MVM_ExecuteProgram (prvm_prog_t *prog, func_t fnum, const char *errormessag
        unsigned int cached_max_edicts = prog->max_edicts;
        // these do not change
        mstatement_t *cached_statements = prog->statements;
-       qboolean cached_allowworldwrites = prog->allowworldwrites;
+       qbool cached_allowworldwrites = prog->allowworldwrites;
        unsigned int cached_flag = prog->flag;
 
        prvm_vec_t *globals = prog->globals.fp;
@@ -1049,7 +1049,7 @@ void CLVM_ExecuteProgram (prvm_prog_t *prog, func_t fnum, const char *errormessa
        unsigned int cached_max_edicts = prog->max_edicts;
        // these do not change
        mstatement_t *cached_statements = prog->statements;
-       qboolean cached_allowworldwrites = prog->allowworldwrites;
+       qbool cached_allowworldwrites = prog->allowworldwrites;
        unsigned int cached_flag = prog->flag;
 
        prvm_vec_t *globals = prog->globals.fp;
@@ -1162,7 +1162,7 @@ void PRVM_ExecuteProgram (prvm_prog_t *prog, func_t fnum, const char *errormessa
        unsigned int cached_max_edicts = prog->max_edicts;
        // these do not change
        mstatement_t *cached_statements = prog->statements;
-       qboolean cached_allowworldwrites = prog->allowworldwrites;
+       qbool cached_allowworldwrites = prog->allowworldwrites;
        unsigned int cached_flag = prog->flag;
 
        prvm_vec_t *globals = prog->globals.fp;