summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-07-19 14:32:39 -0700
committerGravatar Yuri Kunde Schlesner2015-07-19 14:32:39 -0700
commit618434d7fcefc5e4a2275b0a760cd61d96482337 (patch)
tree75be172fc4cca494531be6bbbf799ff283708248 /src/core
parentMerge pull request #943 from Subv/ia4 (diff)
parentChange trace/unimplemented service call logs to use hex (diff)
downloadyuzu-618434d7fcefc5e4a2275b0a760cd61d96482337.tar.gz
yuzu-618434d7fcefc5e4a2275b0a760cd61d96482337.tar.xz
yuzu-618434d7fcefc5e4a2275b0a760cd61d96482337.zip
Merge pull request #947 from archshift/hex-log
Change trace/unimplemented service call logs to use hex
Diffstat (limited to 'src/core')
-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
54 54
55 std::string function_string = Common::StringFromFormat("function '%s': port=%s", name, port_name); 55 std::string function_string = Common::StringFromFormat("function '%s': port=%s", name, port_name);
56 for (int i = 1; i <= num_params; ++i) { 56 for (int i = 1; i <= num_params; ++i) {
57 function_string += Common::StringFromFormat(", cmd_buff[%i]=%u", i, cmd_buff[i]); 57 function_string += Common::StringFromFormat(", cmd_buff[%i]=0x%X", i, cmd_buff[i]);
58 } 58 }
59 return function_string; 59 return function_string;
60} 60}