whoops, that one was not Com_Error()

This commit is contained in:
Thilo Schulz 2011-05-10 10:18:07 +00:00
parent d0a095396e
commit 9706e6ca29
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ void emit(const char* fmt, ...)
do { Com_Error(ERR_DROP, "instruction not implemented: %s", opnames[x]); } while(0)
#else
#define NOTIMPL(x) \
do { Com_Printf(S_COLOR_RED "instruction not implemented: %x", x); vm->compiled = qfalse; return; } while(0)
do { Com_Printf(S_COLOR_RED "instruction not implemented: %x\n", x); vm->compiled = qfalse; return; } while(0)
#endif
static void* getentrypoint(vm_t* vm)