diff options
Diffstat (limited to 'src')
| -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 0c647b86f..ac016a966 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp | |||
| @@ -96,8 +96,8 @@ Result ConnectToPort(void* out, const char* port_name) { | |||
| 96 | /// Synchronize to an OS service | 96 | /// Synchronize to an OS service |
| 97 | Result SendSyncRequest(Handle handle) { | 97 | Result SendSyncRequest(Handle handle) { |
| 98 | DEBUG_LOG(SVC, "SendSyncRequest called handle=0x%08X"); | 98 | DEBUG_LOG(SVC, "SendSyncRequest called handle=0x%08X"); |
| 99 | Service::Interface* service = Service::g_manager->FetchFromHandle(handle); | 99 | Kernel::Object* object = Kernel::g_object_pool.GetFast<Kernel::Object>(handle); |
| 100 | service->Sync(); | 100 | object->SyncRequest(); |
| 101 | return 0; | 101 | return 0; |
| 102 | } | 102 | } |
| 103 | 103 | ||