summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2019-06-09 18:08:37 -0400
committerGravatar Lioncash2019-06-09 18:08:37 -0400
commit81b11020908e6ca6b0a8a881046fef0f23c80aaa (patch)
tree7407b41eae8143c3dbbc27b8e5063ff1cea193eb /src/core/hle/kernel/svc.cpp
parentMerge pull request #2564 from ReinUsesLisp/block-dim-x-fix (diff)
downloadyuzu-81b11020908e6ca6b0a8a881046fef0f23c80aaa.tar.gz
yuzu-81b11020908e6ca6b0a8a881046fef0f23c80aaa.tar.xz
yuzu-81b11020908e6ca6b0a8a881046fef0f23c80aaa.zip
kernel/svc: Remove duplicate enum entry in svcGetInfo()
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-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
716 RegisterResourceLimit = 9, 716 RegisterResourceLimit = 9,
717 IdleTickCount = 10, 717 IdleTickCount = 10,
718 RandomEntropy = 11, 718 RandomEntropy = 11,
719 PerformanceCounter = 0xF0000002, 719 ThreadTickCount = 0xF0000002,
720 // 2.0.0+ 720 // 2.0.0+
721 ASLRRegionBaseAddr = 12, 721 ASLRRegionBaseAddr = 12,
722 ASLRRegionSize = 13, 722 ASLRRegionSize = 13,
@@ -730,7 +730,6 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, u64 ha
730 PrivilegedProcessId = 19, 730 PrivilegedProcessId = 19,
731 // 5.0.0+ 731 // 5.0.0+
732 UserExceptionContextAddr = 20, 732 UserExceptionContextAddr = 20,
733 ThreadTickCount = 0xF0000002,
734 }; 733 };
735 734
736 const auto info_id_type = static_cast<GetInfoType>(info_id); 735 const auto info_id_type = static_cast<GetInfoType>(info_id);