diff options
| author | 2020-03-20 12:36:01 -0400 | |
|---|---|---|
| committer | 2020-06-27 11:35:53 -0400 | |
| commit | 87c49aa7be4b7277f8ae929058633827d339a052 (patch) | |
| tree | 4ecd25f5570a7e86349b076eb67006d515deefd8 /src/core/hle/kernel/svc.cpp | |
| parent | SingleCore: Move Host Timing from a sepparate thread to main cpu thread. (diff) | |
| download | yuzu-87c49aa7be4b7277f8ae929058633827d339a052.tar.gz yuzu-87c49aa7be4b7277f8ae929058633827d339a052.tar.xz yuzu-87c49aa7be4b7277f8ae929058633827d339a052.zip | |
SVC/ARM: Correct svcSendSyncRequest and cache ticks on arm interface.
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 36e9c48f9..f08745226 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -342,7 +342,7 @@ static ResultCode SendSyncRequest(Core::System& system, Handle handle) { | |||
| 342 | thread->InvokeHLECallback(SharedFrom(thread)); | 342 | thread->InvokeHLECallback(SharedFrom(thread)); |
| 343 | } | 343 | } |
| 344 | 344 | ||
| 345 | return RESULT_SUCCESS; | 345 | return thread->GetSignalingResult(); |
| 346 | } | 346 | } |
| 347 | 347 | ||
| 348 | static ResultCode SendSyncRequest32(Core::System& system, Handle handle) { | 348 | static ResultCode SendSyncRequest32(Core::System& system, Handle handle) { |