summaryrefslogtreecommitdiffstats
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-02 23:54:07 +0200
committerbunnei <ericbunnie@gmail.com>2014-06-02 23:54:07 +0200
commit477b0caca4f0db084ab2d2dfb866fd81e5839228 (patch)
tree2d8ebb55b280edbd18b0227b70437c678f782b10 /src/core/hle/svc.cpp
parentsvc: changed DuplicateHandle log message from "error" to "debug" (diff)
downloadyuzu-477b0caca4f0db084ab2d2dfb866fd81e5839228.tar
yuzu-477b0caca4f0db084ab2d2dfb866fd81e5839228.tar.gz
yuzu-477b0caca4f0db084ab2d2dfb866fd81e5839228.tar.bz2
yuzu-477b0caca4f0db084ab2d2dfb866fd81e5839228.tar.lz
yuzu-477b0caca4f0db084ab2d2dfb866fd81e5839228.tar.xz
yuzu-477b0caca4f0db084ab2d2dfb866fd81e5839228.tar.zst
yuzu-477b0caca4f0db084ab2d2dfb866fd81e5839228.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/svc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 1f36c7ac5..c8eb8ea80 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -147,7 +147,7 @@ Result WaitSynchronization1(Handle handle, s64 nano_seconds) {
Result WaitSynchronizationN(void* _out, void* _handles, u32 handle_count, u32 wait_all,
s64 nano_seconds) {
// TODO(bunnei): Do something with nano_seconds, currently ignoring this
-
+ s32* out = (s32*)_out;
Handle* handles = (Handle*)_handles;
bool unlock_all = true;
@@ -167,7 +167,7 @@ Result WaitSynchronizationN(void* _out, void* _handles, u32 handle_count, u32 wa
Result res = object->WaitSynchronization(&wait);
if (!wait && !wait_all) {
- Core::g_app_core->SetReg(1, i);
+ *out = i;
return 0;
} else {
unlock_all = false;
@@ -175,7 +175,7 @@ Result WaitSynchronizationN(void* _out, void* _handles, u32 handle_count, u32 wa
}
if (wait_all && unlock_all) {
- Core::g_app_core->SetReg(1, handle_count);
+ *out = handle_count;
return 0;
}