diff options
author | bunnei <ericbunnie@gmail.com> | 2014-06-06 06:44:44 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-06-13 15:51:13 +0200 |
commit | 4d6c96b7d8d77b87fcc137aa03cd6a4e4313bdc7 (patch) | |
tree | f6e1a5f5bb503cf570c7f8cee1312ce48feaa97b /src/core/hle/svc.cpp | |
parent | HLE: Updated all uses of NULL to nullptr (to be C++11 compliant) (diff) | |
download | yuzu-4d6c96b7d8d77b87fcc137aa03cd6a4e4313bdc7.tar yuzu-4d6c96b7d8d77b87fcc137aa03cd6a4e4313bdc7.tar.gz yuzu-4d6c96b7d8d77b87fcc137aa03cd6a4e4313bdc7.tar.bz2 yuzu-4d6c96b7d8d77b87fcc137aa03cd6a4e4313bdc7.tar.lz yuzu-4d6c96b7d8d77b87fcc137aa03cd6a4e4313bdc7.tar.xz yuzu-4d6c96b7d8d77b87fcc137aa03cd6a4e4313bdc7.tar.zst yuzu-4d6c96b7d8d77b87fcc137aa03cd6a4e4313bdc7.zip |
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r-- | src/core/hle/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 01fc056a1..76c6a0771 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -90,12 +90,12 @@ Result ConnectToPort(void* _out, const char* port_name) { /// Synchronize to an OS service Result SendSyncRequest(Handle handle) { - bool wait = false; Kernel::Object* object = Kernel::g_object_pool.GetFast<Kernel::Object>(handle); _assert_msg_(KERNEL, (object != nullptr), "called, but kernel object is nullptr!"); DEBUG_LOG(SVC, "called handle=0x%08X(%s)", handle, object->GetTypeName()); + bool wait = false; Result res = object->SyncRequest(&wait); if (wait) { Kernel::WaitCurrentThread(WAITTYPE_SYNCH); // TODO(bunnei): Is this correct? |