summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-06-18 11:37:13 -0400
committerGravatar GitHub2018-06-18 11:37:13 -0400
commit4ac4b308e4ac0b03d4495a8e61c58f937f951d31 (patch)
tree81933ac7b9ad7cf59d3aab18e154123fd6644916 /src/core/hle/kernel/svc.cpp
parentMerge pull request #571 from Armada651/loose-blend (diff)
parentsvc: Add a stub for UserExceptionContextAddr. (diff)
downloadyuzu-4ac4b308e4ac0b03d4495a8e61c58f937f951d31.tar.gz
yuzu-4ac4b308e4ac0b03d4495a8e61c58f937f951d31.tar.xz
yuzu-4ac4b308e4ac0b03d4495a8e61c58f937f951d31.zip
Merge pull request #572 from Armada651/user-except-stub
svc: Add a stub for UserExceptionContextAddr.
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index ec3601e8b..097416e9e 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -316,6 +316,11 @@ static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id)
316 "(STUBBED) Attempted to query privileged process id bounds, returned 0"); 316 "(STUBBED) Attempted to query privileged process id bounds, returned 0");
317 *result = 0; 317 *result = 0;
318 break; 318 break;
319 case GetInfoType::UserExceptionContextAddr:
320 NGLOG_WARNING(Kernel_SVC,
321 "(STUBBED) Attempted to query user exception context address, returned 0");
322 *result = 0;
323 break;
319 default: 324 default:
320 UNIMPLEMENTED(); 325 UNIMPLEMENTED();
321 } 326 }