summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2014-06-04 18:50:50 -0400
committerGravatar bunnei2014-06-04 18:50:50 -0400
commit870c6146e727e3537536f162e76ee8e20d56622f (patch)
tree348f64414040079bda2edbdd9e82d02de4a50eb6 /src
parentarm: reverting a change made with cb0663de - this has to have been a typo! (diff)
downloadyuzu-870c6146e727e3537536f162e76ee8e20d56622f.tar.gz
yuzu-870c6146e727e3537536f162e76ee8e20d56622f.tar.xz
yuzu-870c6146e727e3537536f162e76ee8e20d56622f.zip
service: added a error log messages for unimplemented WaitSynchronization
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/service.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h
index c3e9dd313..8699ad305 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -115,6 +115,7 @@ public:
115 */ 115 */
116 Result WaitSynchronization(bool* wait) { 116 Result WaitSynchronization(bool* wait) {
117 // TODO(bunnei): ImplementMe 117 // TODO(bunnei): ImplementMe
118 ERROR_LOG(OSHLE, "unimplemented function");
118 return 0; 119 return 0;
119 } 120 }
120 121