summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-06-10 00:08:37 +0200
committerLioncash <mathew1800@gmail.com>2019-06-10 00:08:37 +0200
commit81b11020908e6ca6b0a8a881046fef0f23c80aaa (patch)
tree7407b41eae8143c3dbbc27b8e5063ff1cea193eb /src/core/hle/kernel
parentMerge pull request #2564 from ReinUsesLisp/block-dim-x-fix (diff)
downloadyuzu-81b11020908e6ca6b0a8a881046fef0f23c80aaa.tar
yuzu-81b11020908e6ca6b0a8a881046fef0f23c80aaa.tar.gz
yuzu-81b11020908e6ca6b0a8a881046fef0f23c80aaa.tar.bz2
yuzu-81b11020908e6ca6b0a8a881046fef0f23c80aaa.tar.lz
yuzu-81b11020908e6ca6b0a8a881046fef0f23c80aaa.tar.xz
yuzu-81b11020908e6ca6b0a8a881046fef0f23c80aaa.tar.zst
yuzu-81b11020908e6ca6b0a8a881046fef0f23c80aaa.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/svc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 5a5851f66..1f8b0d92b 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -716,7 +716,7 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, u64 ha
RegisterResourceLimit = 9,
IdleTickCount = 10,
RandomEntropy = 11,
- PerformanceCounter = 0xF0000002,
+ ThreadTickCount = 0xF0000002,
// 2.0.0+
ASLRRegionBaseAddr = 12,
ASLRRegionSize = 13,
@@ -730,7 +730,6 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, u64 ha
PrivilegedProcessId = 19,
// 5.0.0+
UserExceptionContextAddr = 20,
- ThreadTickCount = 0xF0000002,
};
const auto info_id_type = static_cast<GetInfoType>(info_id);