summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-06-18 17:37:13 +0200
committerGitHub <noreply@github.com>2018-06-18 17:37:13 +0200
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
yuzu-4ac4b308e4ac0b03d4495a8e61c58f937f951d31.tar.gz
yuzu-4ac4b308e4ac0b03d4495a8e61c58f937f951d31.tar.bz2
yuzu-4ac4b308e4ac0b03d4495a8e61c58f937f951d31.tar.lz
yuzu-4ac4b308e4ac0b03d4495a8e61c58f937f951d31.tar.xz
yuzu-4ac4b308e4ac0b03d4495a8e61c58f937f951d31.tar.zst
yuzu-4ac4b308e4ac0b03d4495a8e61c58f937f951d31.zip
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)
"(STUBBED) Attempted to query privileged process id bounds, returned 0");
*result = 0;
break;
+ case GetInfoType::UserExceptionContextAddr:
+ NGLOG_WARNING(Kernel_SVC,
+ "(STUBBED) Attempted to query user exception context address, returned 0");
+ *result = 0;
+ break;
default:
UNIMPLEMENTED();
}