diff options
| author | 2017-12-31 15:55:11 -0500 | |
|---|---|---|
| committer | 2017-12-31 15:55:11 -0500 | |
| commit | 960e8dc5e548d0d3253bec2a2e892fa439fe31c3 (patch) | |
| tree | d658fb7355af149311bc7c47268c3d5f0dc9afb3 /src/core | |
| parent | function_wrappers: Cleanup, fix warnings, remove unused code. (diff) | |
| download | yuzu-960e8dc5e548d0d3253bec2a2e892fa439fe31c3.tar.gz yuzu-960e8dc5e548d0d3253bec2a2e892fa439fe31c3.tar.xz yuzu-960e8dc5e548d0d3253bec2a2e892fa439fe31c3.zip | |
svc: Change SignalProcessWideKey to a stub.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/svc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 3b49686d7..4323c1a29 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp | |||
| @@ -221,8 +221,8 @@ static void SleepThread(s64 nanoseconds) { | |||
| 221 | } | 221 | } |
| 222 | 222 | ||
| 223 | /// Signal process wide key | 223 | /// Signal process wide key |
| 224 | static ResultCode SignalProcessWideKey(VAddr address, u32 target) { | 224 | static ResultCode SignalProcessWideKey(VAddr addr, u32 target) { |
| 225 | LOG_TRACE(Kernel_SVC, "called, address=0x%llx, target=0x%08x", address, target); | 225 | LOG_WARNING(Kernel_SVC, "(STUBBED) called, address=0x%llx, target=0x%08x", addr, target); |
| 226 | return RESULT_SUCCESS; | 226 | return RESULT_SUCCESS; |
| 227 | } | 227 | } |
| 228 | 228 | ||