From a4c8b6b82b94d12a312bf25d34779c655352f67f Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Tue, 10 May 2011 10:18:07 +0000 Subject: whoops, that one was not Com_Error() --- src/qcommon/vm_x86_64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qcommon') 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) -- cgit