summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorarchshift <gh@archshift.com>2015-07-19 22:34:38 +0200
committerarchshift <gh@archshift.com>2015-07-19 22:34:38 +0200
commit84a88005e2c98dbfc9c7861ace6c493cf75e7d98 (patch)
tree75be172fc4cca494531be6bbbf799ff283708248 /src/core/hle/service
parentMerge pull request #943 from Subv/ia4 (diff)
downloadyuzu-84a88005e2c98dbfc9c7861ace6c493cf75e7d98.tar
yuzu-84a88005e2c98dbfc9c7861ace6c493cf75e7d98.tar.gz
yuzu-84a88005e2c98dbfc9c7861ace6c493cf75e7d98.tar.bz2
yuzu-84a88005e2c98dbfc9c7861ace6c493cf75e7d98.tar.lz
yuzu-84a88005e2c98dbfc9c7861ace6c493cf75e7d98.tar.xz
yuzu-84a88005e2c98dbfc9c7861ace6c493cf75e7d98.tar.zst
yuzu-84a88005e2c98dbfc9c7861ace6c493cf75e7d98.zip
Diffstat (limited to 'src/core/hle/service')
-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;
}