summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2022-10-02 14:26:30 -0700
committerGravatar bunnei2022-10-18 19:13:35 -0700
commitabcc009dff5d98b5a04229f3a82baab23d568244 (patch)
treee51f99cf493425a3cd331ffdaa1b984554e429aa /src/core/hle/kernel/svc.cpp
parentcore: hle: kernel: k_interrupt_manager: HandleInterrupt should not depend on ... (diff)
downloadyuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar.gz
yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar.xz
yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.zip
core: hle: kernel: k_process: Improve management of page table & cleanup.
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index bac61fd09..b07ae3f02 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -933,7 +933,7 @@ static Result GetInfo(Core::System& system, u64* result, u64 info_id, Handle han
933 return ResultSuccess; 933 return ResultSuccess;
934 934
935 case GetInfoType::UserExceptionContextAddr: 935 case GetInfoType::UserExceptionContextAddr:
936 *result = process->GetTLSRegionAddress(); 936 *result = process->GetProcessLocalRegionAddress();
937 return ResultSuccess; 937 return ResultSuccess;
938 938
939 case GetInfoType::TotalPhysicalMemoryAvailableWithoutSystemResource: 939 case GetInfoType::TotalPhysicalMemoryAvailableWithoutSystemResource: