diff options
author | bunnei <bunneidev@gmail.com> | 2018-11-14 20:54:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-14 20:54:29 +0100 |
commit | c95ded3a4a64d37667a01368716503b3acee04a5 (patch) | |
tree | cea5d734a312958bc86f839c923abbb181c22690 /src/core/hle | |
parent | Merge pull request #1684 from lioncash/common (diff) | |
parent | service: Mark MakeFunctionString with the [[maybe_unused]] attribute. (diff) | |
download | yuzu-c95ded3a4a64d37667a01368716503b3acee04a5.tar yuzu-c95ded3a4a64d37667a01368716503b3acee04a5.tar.gz yuzu-c95ded3a4a64d37667a01368716503b3acee04a5.tar.bz2 yuzu-c95ded3a4a64d37667a01368716503b3acee04a5.tar.lz yuzu-c95ded3a4a64d37667a01368716503b3acee04a5.tar.xz yuzu-c95ded3a4a64d37667a01368716503b3acee04a5.tar.zst yuzu-c95ded3a4a64d37667a01368716503b3acee04a5.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/service.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index a4cf45267..1ec340466 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -80,8 +80,8 @@ namespace Service { * Creates a function string for logging, complete with the name (or header code, depending * on what's passed in) the port name, and all the cmd_buff arguments. */ -static std::string MakeFunctionString(const char* name, const char* port_name, - const u32* cmd_buff) { +[[maybe_unused]] static std::string MakeFunctionString(const char* name, const char* port_name, + const u32* cmd_buff) { // Number of params == bits 0-5 + bits 6-11 int num_params = (cmd_buff[0] & 0x3F) + ((cmd_buff[0] >> 6) & 0x3F); |