diff options
| author | 2020-02-13 17:01:44 -0400 | |
|---|---|---|
| committer | 2020-02-13 19:10:33 -0400 | |
| commit | 2bc949628dfa2efe9a18660b9d662e2a25cef9f9 (patch) | |
| tree | 84b72d7b0fcf8838c34c9ae0943dc297fa539e5b /src/core/hle/kernel/svc.cpp | |
| parent | Core: Set all hardware emulation constants in a single file. (diff) | |
| download | yuzu-2bc949628dfa2efe9a18660b9d662e2a25cef9f9.tar.gz yuzu-2bc949628dfa2efe9a18660b9d662e2a25cef9f9.tar.xz yuzu-2bc949628dfa2efe9a18660b9d662e2a25cef9f9.zip | |
Core: Address Feedback
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 86c660cdf..fd91779a3 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -474,7 +474,7 @@ static ResultCode WaitSynchronization(Core::System& system, Handle* index, VAddr | |||
| 474 | objects[i] = object; | 474 | objects[i] = object; |
| 475 | } | 475 | } |
| 476 | auto& synchronization = kernel.Synchronization(); | 476 | auto& synchronization = kernel.Synchronization(); |
| 477 | auto [result, handle_result] = synchronization.WaitFor(objects, nano_seconds); | 477 | const auto [result, handle_result] = synchronization.WaitFor(objects, nano_seconds); |
| 478 | *index = handle_result; | 478 | *index = handle_result; |
| 479 | return result; | 479 | return result; |
| 480 | } | 480 | } |