diff options
author | Jules Blok <jules.blok@gmail.com> | 2018-06-18 09:28:37 +0200 |
---|---|---|
committer | Jules Blok <jules.blok@gmail.com> | 2018-06-18 09:29:11 +0200 |
commit | bf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e (patch) | |
tree | 3ebc01534f6a282c722d8f26a3555289e78d3930 /src | |
parent | Removes the use of QKeySequence::Cancel (#186) (diff) | |
download | yuzu-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 'src')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 5 |
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(); } |