[quake3-commits] r1971 - trunk/code/qcommon
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Tue May 10 06:18:07 EDT 2011
Author: thilo
Date: 2011-05-10 06:18:07 -0400 (Tue, 10 May 2011)
New Revision: 1971
Modified:
trunk/code/qcommon/vm_x86_64.c
Log:
whoops, that one was not Com_Error()
Modified: trunk/code/qcommon/vm_x86_64.c
===================================================================
--- trunk/code/qcommon/vm_x86_64.c 2011-05-10 10:07:34 UTC (rev 1970)
+++ trunk/code/qcommon/vm_x86_64.c 2011-05-10 10:18:07 UTC (rev 1971)
@@ -387,7 +387,7 @@
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)
More information about the quake3-commits
mailing list