summaryrefslogtreecommitdiff
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/hle.cpp')
-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) {
76 if (info->func) { 76 if (info->func) {
77 info->func(); 77 info->func();
78 } else { 78 } else {
79 ERROR_LOG(HLE, "Unimplemented HLE function %s", info->name); 79 ERROR_LOG(HLE, "Unimplemented SysCall function %s(..)", info->name.c_str());
80 } 80 }
81} 81}
82 82