From e1f31b969a05dce1480d7283bf953e3604bbe15b Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Thu, 16 Jun 2011 02:01:13 +0000 Subject: Fix wrong macro. MSVC win32 build should work again now. --- src/qcommon/vm_x86.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/qcommon/vm_x86.c b/src/qcommon/vm_x86.c index b6b301e2..34d5d43e 100644 --- a/src/qcommon/vm_x86.c +++ b/src/qcommon/vm_x86.c @@ -414,8 +414,7 @@ static void DoSyscall(void) vm_t *savedVM; -#ifdef _MSC_VER - #ifndef idx64 +#if defined(_MSC_VER) && !idx64 __asm { mov dword ptr syscallNum, eax @@ -424,7 +423,6 @@ static void DoSyscall(void) mov dword ptr opStackBase, edi mov dword ptr arg, ecx } - #endif #else __asm__ volatile( "" -- cgit