mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-13 07:57:23 +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)
|
do { Com_Error(ERR_DROP, "instruction not implemented: %s", opnames[x]); } while(0)
|
||||||
#else
|
#else
|
||||||
#define NOTIMPL(x) \
|
#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
|
#endif
|
||||||
|
|
||||||
static void* getentrypoint(vm_t* vm)
|
static void* getentrypoint(vm_t* vm)
|
||||||
|
|
Loading…
Reference in a new issue