Sfoglia il codice sorgente

service: Renamed Sync to SyncRequest

bunnei 12 anni fa
parent
commit
16fea415d0
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/core/hle/service/service.h

+ 1 - 1
src/core/hle/service/service.h

@@ -79,7 +79,7 @@ public:
      * Called when svcSendSyncRequest is called, loads command buffer and executes comand
      * @return Return result of svcSendSyncRequest passed back to user app
      */
-    Result Sync() {
+    Result SyncRequest() {
         u32* cmd_buff = GetCommandBuffer();
         auto itr = m_functions.find(cmd_buff[0]);