summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-26 21:56:51 -0400
committerGravatar bunnei2014-05-26 21:56:51 -0400
commit16fea415d09e3c1e55667a6affab495e03117f96 (patch)
tree72cf4bdc407d08931a6b110f48406f257294c49b /src/core
parentkernel: added enum for known CurrentThread and CurrentProcess handles (diff)
downloadyuzu-16fea415d09e3c1e55667a6affab495e03117f96.tar.gz
yuzu-16fea415d09e3c1e55667a6affab495e03117f96.tar.xz
yuzu-16fea415d09e3c1e55667a6affab495e03117f96.zip
service: Renamed Sync to SyncRequest
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/service.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h
index 716669bed..c970ace4b 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -79,7 +79,7 @@ public:
79 * Called when svcSendSyncRequest is called, loads command buffer and executes comand 79 * Called when svcSendSyncRequest is called, loads command buffer and executes comand
80 * @return Return result of svcSendSyncRequest passed back to user app 80 * @return Return result of svcSendSyncRequest passed back to user app
81 */ 81 */
82 Result Sync() { 82 Result SyncRequest() {
83 u32* cmd_buff = GetCommandBuffer(); 83 u32* cmd_buff = GetCommandBuffer();
84 auto itr = m_functions.find(cmd_buff[0]); 84 auto itr = m_functions.find(cmd_buff[0]);
85 85