aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/service.h
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-06-04 18:50:50 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-06-04 18:50:50 -0400
commit870c6146e727e3537536f162e76ee8e20d56622f (patch)
tree348f64414040079bda2edbdd9e82d02de4a50eb6 /src/core/hle/service/service.h
parentc330a0a1d66f916fc19cf92160522530baf1aad1 (diff)
service: added a error log messages for unimplemented WaitSynchronization
Diffstat (limited to 'src/core/hle/service/service.h')
-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 c3e9dd31..8699ad30 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -115,6 +115,7 @@ public:
*/
Result WaitSynchronization(bool* wait) {
// TODO(bunnei): ImplementMe
+ ERROR_LOG(OSHLE, "unimplemented function");
return 0;
}