diff options
author | Thilo Schulz <arny@ats.s.bawue.de> | 2011-05-10 10:18:07 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-09 21:38:40 +0000 |
commit | a4c8b6b82b94d12a312bf25d34779c655352f67f (patch) | |
tree | 742fad42ad012aa374ce7dd205714f82d41d81ab | |
parent | 5b9d8276081db360589c2778826699cace4088a5 (diff) |
whoops, that one was not Com_Error()
-rw-r--r-- | src/qcommon/vm_x86_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/vm_x86_64.c b/src/qcommon/vm_x86_64.c index a9498c80..fa2185a7 100644 --- a/src/qcommon/vm_x86_64.c +++ b/src/qcommon/vm_x86_64.c @@ -388,7 +388,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) |