summaryrefslogtreecommitdiff
path: root/src/common/x64
diff options
context:
space:
mode:
authorGravatar bunnei2020-11-03 11:00:23 -0800
committerGravatar GitHub2020-11-03 11:00:23 -0800
commit222fe75401f0672de78c07ba901e650ccc8aa96a (patch)
treeb3f29608f58df5bc86c502171a5f66e2692ec3d8 /src/common/x64
parentMerge pull request #4878 from bunnei/unload-nrr (diff)
parentcommon: Enable warnings as errors (diff)
downloadyuzu-222fe75401f0672de78c07ba901e650ccc8aa96a.tar.gz
yuzu-222fe75401f0672de78c07ba901e650ccc8aa96a.tar.xz
yuzu-222fe75401f0672de78c07ba901e650ccc8aa96a.zip
Merge pull request #4873 from lioncash/common-error
common: Enable warnings as errors
Diffstat (limited to 'src/common/x64')
-rw-r--r--src/common/x64/native_clock.h2
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:
34 /// value used to reduce the native clocks accuracy as some apss rely on 34 /// value used to reduce the native clocks accuracy as some apss rely on
35 /// undefined behavior where the level of accuracy in the clock shouldn't 35 /// undefined behavior where the level of accuracy in the clock shouldn't
36 /// be higher. 36 /// be higher.
37 static constexpr u64 inaccuracy_mask = ~(0x400 - 1); 37 static constexpr u64 inaccuracy_mask = ~(UINT64_C(0x400) - 1);
38 38
39 SpinLock rtsc_serialize{}; 39 SpinLock rtsc_serialize{};
40 u64 last_measure{}; 40 u64 last_measure{};