aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon
diff options
context:
space:
mode:
Diffstat (limited to 'code/qcommon')
-rw-r--r--code/qcommon/vm.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/code/qcommon/vm.c b/code/qcommon/vm.c
index d5bb3aa..080599d 100644
--- a/code/qcommon/vm.c
+++ b/code/qcommon/vm.c
@@ -558,12 +558,13 @@ vm_t *VM_Create( const char *module, long (*systemCalls)(long *),
Com_Printf("Architecture doesn't have a bytecode compiler, using interpreter\n");
interpret = VMI_BYTECODE;
}
-#endif
-
+#else
if ( interpret >= VMI_COMPILED ) {
vm->compiled = qtrue;
VM_Compile( vm, header );
- } else {
+ } else
+#endif
+ {
vm->compiled = qfalse;
VM_PrepareInterpreter( vm, header );
}