mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Common: Remove unnecessary define check in Log2
This commit is contained in:
parent
b583879c2a
commit
f69e6ef16f
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ inline int Log2(u64 val)
|
|||
#if defined(__GNUC__)
|
||||
return 63 - __builtin_clzll(val);
|
||||
|
||||
#elif defined(_MSC_VER) && _ARCH_64
|
||||
#elif defined(_MSC_VER)
|
||||
unsigned long result = -1;
|
||||
_BitScanReverse64(&result, val);
|
||||
return result;
|
||||
|
|
Loading…
Add table
Reference in a new issue