summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-07-19 23:32:39 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-07-19 23:32:39 +0200
commit618434d7fcefc5e4a2275b0a760cd61d96482337 (patch)
tree75be172fc4cca494531be6bbbf799ff283708248 /src
parentMerge pull request #943 from Subv/ia4 (diff)
parentChange trace/unimplemented service call logs to use hex (diff)
downloadyuzu-618434d7fcefc5e4a2275b0a760cd61d96482337.tar
yuzu-618434d7fcefc5e4a2275b0a760cd61d96482337.tar.gz
yuzu-618434d7fcefc5e4a2275b0a760cd61d96482337.tar.bz2
yuzu-618434d7fcefc5e4a2275b0a760cd61d96482337.tar.lz
yuzu-618434d7fcefc5e4a2275b0a760cd61d96482337.tar.xz
yuzu-618434d7fcefc5e4a2275b0a760cd61d96482337.tar.zst
yuzu-618434d7fcefc5e4a2275b0a760cd61d96482337.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/service.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index d681cc3dc..0de0b13a3 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -54,7 +54,7 @@ static std::string MakeFunctionString(const char* name, const char* port_name, c
std::string function_string = Common::StringFromFormat("function '%s': port=%s", name, port_name);
for (int i = 1; i <= num_params; ++i) {
- function_string += Common::StringFromFormat(", cmd_buff[%i]=%u", i, cmd_buff[i]);
+ function_string += Common::StringFromFormat(", cmd_buff[%i]=0x%X", i, cmd_buff[i]);
}
return function_string;
}