mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
vm_x86.c: Add defined(_M_IX86) || defined(_M_X64)
(fix for VS2019)
This commit is contained in:
parent
6d74896557
commit
29b0cc3a4d
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#if defined (__i386__) || defined(__x86_64__)
|
||||
#if defined (__i386__) || defined(__x86_64__) || defined(_M_IX86) || defined(_M_X64)
|
||||
static void VM_Destroy_Compiled(vm_t* self);
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue