summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Jules Blok2018-06-18 09:28:37 +0200
committerGravatar Jules Blok2018-06-18 09:29:11 +0200
commitbf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e (patch)
tree3ebc01534f6a282c722d8f26a3555289e78d3930 /src
parentRemoves the use of QKeySequence::Cancel (#186) (diff)
downloadyuzu-bf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e.tar.gz
yuzu-bf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e.tar.xz
yuzu-bf4e2b2f0bbb3102858f7fa3aaf0aa73e739eb1e.zip
svc: Add a stub for UserExceptionContextAddr.
Diffstat (limited to 'src')
-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)
363 "(STUBBED) Attempted to query priviledged process id bounds, returned 0"); 363 "(STUBBED) Attempted to query priviledged process id bounds, returned 0");
364 *result = 0; 364 *result = 0;
365 break; 365 break;
366 case GetInfoType::UserExceptionContextAddr:
367 NGLOG_WARNING(Kernel_SVC,
368 "(STUBBED) Attempted to query user exception context address, returned 0");
369 *result = 0;
370 break;
366 default: 371 default:
367 UNIMPLEMENTED(); 372 UNIMPLEMENTED();
368 } 373 }