summaryrefslogtreecommitdiffstats
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-17 02:41:33 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-17 02:41:33 +0200
commitde3dcd38f6572da88a67e625e6aa98c2a2f786d7 (patch)
treea829306a3e12733409e549fa7223a232364ac418 /src/core/hle/hle.cpp
parent- added stubbed out GSP::Gpu service interface (diff)
downloadyuzu-de3dcd38f6572da88a67e625e6aa98c2a2f786d7.tar
yuzu-de3dcd38f6572da88a67e625e6aa98c2a2f786d7.tar.gz
yuzu-de3dcd38f6572da88a67e625e6aa98c2a2f786d7.tar.bz2
yuzu-de3dcd38f6572da88a67e625e6aa98c2a2f786d7.tar.lz
yuzu-de3dcd38f6572da88a67e625e6aa98c2a2f786d7.tar.xz
yuzu-de3dcd38f6572da88a67e625e6aa98c2a2f786d7.tar.zst
yuzu-de3dcd38f6572da88a67e625e6aa98c2a2f786d7.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/hle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp
index c173b82de..5672a659f 100644
--- a/src/core/hle/hle.cpp
+++ b/src/core/hle/hle.cpp
@@ -76,7 +76,7 @@ void CallSyscall(u32 opcode) {
if (info->func) {
info->func();
} else {
- ERROR_LOG(HLE, "Unimplemented HLE function %s", info->name);
+ ERROR_LOG(HLE, "Unimplemented SysCall function %s(..)", info->name.c_str());
}
}