fix ifdef vs if defined

This commit is contained in:
mrfixit2001 2018-11-26 16:02:25 -05:00 committed by GitHub
parent 0ab6c59fbe
commit 53e6fbadf4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,7 +49,7 @@ void DoUnswizzleTex16Basic(const u8 *texptr, u32 *ydestp, int bxc, int byc, u32
#define DoReliableHash32 XXH32
#define DoReliableHash64 XXH64
#ifdef _M_X64 || defined(ARM64)
#if defined(_M_X64) || defined(ARM64)
#define DoReliableHash XXH64
typedef u64 ReliableHashType;
#else