Browse Source
Merge pull request #572 from Armada651/user-except-stub
svc: Add a stub for UserExceptionContextAddr.
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
0 deletions
-
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(); |
|
|
|
} |
|
|
|
|