mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
whoops, that one was not Com_Error()
This commit is contained in:
parent
d0a095396e
commit
9706e6ca29
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue