summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-05-30 06:22:39 +0200
committerbunnei <ericbunnie@gmail.com>2014-05-30 06:22:39 +0200
commitc451ad28355b48f9d55a9b1a939e913fbf875953 (patch)
tree61b365779008dc2be146549756327aafa96fec0a /src
parentservice: removed PT_A from, as this was just an alias for APT_U (diff)
downloadyuzu-c451ad28355b48f9d55a9b1a939e913fbf875953.tar
yuzu-c451ad28355b48f9d55a9b1a939e913fbf875953.tar.gz
yuzu-c451ad28355b48f9d55a9b1a939e913fbf875953.tar.bz2
yuzu-c451ad28355b48f9d55a9b1a939e913fbf875953.tar.lz
yuzu-c451ad28355b48f9d55a9b1a939e913fbf875953.tar.xz
yuzu-c451ad28355b48f9d55a9b1a939e913fbf875953.tar.zst
yuzu-c451ad28355b48f9d55a9b1a939e913fbf875953.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/service.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h
index 8f8d4d552..c3e9dd313 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -85,7 +85,7 @@ public:
auto itr = m_functions.find(cmd_buff[0]);
if (itr == m_functions.end()) {
- ERROR_LOG(OSHLE, "Unknown/unimplemented function: port = %s, command = 0x%08X!",
+ ERROR_LOG(OSHLE, "unknown/unimplemented function: port=%s, command=0x%08X",
GetPortName(), cmd_buff[0]);
// TODO(bunnei): Hack - ignore error
@@ -94,7 +94,7 @@ public:
return 0;
}
if (itr->second.func == NULL) {
- ERROR_LOG(OSHLE, "Unimplemented function: port = %s, name = %s!",
+ ERROR_LOG(OSHLE, "unimplemented function: port=%s, name=%s",
GetPortName(), itr->second.name.c_str());
// TODO(bunnei): Hack - ignore error