diff options
author | Lioncash <mathew1800@gmail.com> | 2020-10-30 20:02:02 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-11-02 21:50:58 +0100 |
commit | 4a4b685a0420b0ac7c026cd2370c23d54f469976 (patch) | |
tree | 8de9e9a72563a369dac5ec8183e417e40ee4b8bf /src/common/x64/native_clock.h | |
parent | CMakeLists: Resolve MSVC build failures (diff) | |
download | yuzu-4a4b685a0420b0ac7c026cd2370c23d54f469976.tar yuzu-4a4b685a0420b0ac7c026cd2370c23d54f469976.tar.gz yuzu-4a4b685a0420b0ac7c026cd2370c23d54f469976.tar.bz2 yuzu-4a4b685a0420b0ac7c026cd2370c23d54f469976.tar.lz yuzu-4a4b685a0420b0ac7c026cd2370c23d54f469976.tar.xz yuzu-4a4b685a0420b0ac7c026cd2370c23d54f469976.tar.zst yuzu-4a4b685a0420b0ac7c026cd2370c23d54f469976.zip |
Diffstat (limited to 'src/common/x64/native_clock.h')
-rw-r--r-- | src/common/x64/native_clock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/x64/native_clock.h b/src/common/x64/native_clock.h index 7c503df26..97aab6ac9 100644 --- a/src/common/x64/native_clock.h +++ b/src/common/x64/native_clock.h @@ -34,7 +34,7 @@ private: /// value used to reduce the native clocks accuracy as some apss rely on /// undefined behavior where the level of accuracy in the clock shouldn't /// be higher. - static constexpr u64 inaccuracy_mask = ~(0x400 - 1); + static constexpr u64 inaccuracy_mask = ~(UINT64_C(0x400) - 1); SpinLock rtsc_serialize{}; u64 last_measure{}; |