mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Remove _M_X86 in favour of _M_X86_64
This commit is contained in:
parent
69fc7bbdad
commit
f0d2ce4683
16 changed files with 27 additions and 29 deletions
|
@ -359,7 +359,7 @@ static u64 GetHash64_SSE42_CRC32(const u8* src, u32 len, u32 samples)
|
|||
return h[0] + (h[1] << 10) + (h[2] << 21) + (h[3] << 32);
|
||||
}
|
||||
|
||||
#elif defined(_M_X86)
|
||||
#elif defined(_M_X86_64)
|
||||
|
||||
FUNCTION_TARGET_SSE42
|
||||
static u64 GetHash64_SSE42_CRC32(const u8* src, u32 len, u32 samples)
|
||||
|
@ -433,7 +433,7 @@ static u64 SetHash64Function(const u8* src, u32 len, u32 samples)
|
|||
{
|
||||
if (cpu_info.bCRC32)
|
||||
{
|
||||
#if defined(_M_X86_64) || defined(_M_X86)
|
||||
#if defined(_M_X86_64)
|
||||
s_texture_hash_func = &GetHash64_SSE42_CRC32;
|
||||
#elif defined(_M_ARM_64)
|
||||
s_texture_hash_func = &GetHash64_ARMv8_CRC32;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue