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/core/hle | |
| parent | 65f3119074f4cb6a07af747b9c9d8445e08ccc50 (diff) | |
svc: Add a stub for UserExceptionContextAddr.
Diffstat (limited to 'src/core/hle')
| -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();      } | 
