diff options
-rw-r--r-- | src/qcommon/vm_x86.c | 4 |
1 files changed, 1 insertions, 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( "" |