From 9706e6ca2922d12750dade5ecc2c3a243e6dd0c1 Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Tue, 10 May 2011 10:18:07 +0000 Subject: [PATCH] whoops, that one was not Com_Error() --- code/qcommon/vm_x86_64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/vm_x86_64.c b/code/qcommon/vm_x86_64.c index 7dd67b6f..49627859 100644 --- a/code/qcommon/vm_x86_64.c +++ b/code/qcommon/vm_x86_64.c @@ -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)