diff options
author | archshift <gh@archshift.com> | 2015-07-19 13:34:38 -0700 |
---|---|---|
committer | archshift <gh@archshift.com> | 2015-07-19 13:34:38 -0700 |
commit | 84a88005e2c98dbfc9c7861ace6c493cf75e7d98 (patch) | |
tree | 75be172fc4cca494531be6bbbf799ff283708248 /src | |
parent | ef828a1cddf9b628e498ed6aa9f7778d01b7d10e (diff) |
Change trace/unimplemented service call logs to use hex
Changes the log to use hex in the parameter list instead of decimal.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/service.cpp | 2 |
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; } |