summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorJules Blok <jules.blok@gmail.com>2018-06-18 09:28:37 +0200
committerJules Blok <jules.blok@gmail.com>2018-06-18 09:29:11 +0200
commitbf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e (patch)
tree3ebc01534f6a282c722d8f26a3555289e78d3930 /src/core/hle/kernel/svc.cpp
parentRemoves the use of QKeySequence::Cancel (#186) (diff)
downloadyuzu-bf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e.tar
yuzu-bf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e.tar.gz
yuzu-bf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e.tar.bz2
yuzu-bf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e.tar.lz
yuzu-bf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e.tar.xz
yuzu-bf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e.tar.zst
yuzu-bf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e.zip
Diffstat (limited to '')
-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 1ab8cbd88..b2e8b5ce3 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -363,6 +363,11 @@ static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id)
"(STUBBED) Attempted to query priviledged 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();
}