diff options
author | Chloe Marcec <dmarcecguzman@gmail.com> | 2021-01-20 08:42:39 +0100 |
---|---|---|
committer | Chloe Marcec <dmarcecguzman@gmail.com> | 2021-01-20 08:42:39 +0100 |
commit | dc18a1261cb841502cbd8f41e9bc820a9d9a15b6 (patch) | |
tree | aeb31db1ad3e389bd67533f4690c92da342490f9 /src/core/hle/service | |
parent | Mark LogPacketHeaderEntry hash as noexcept (diff) | |
download | yuzu-dc18a1261cb841502cbd8f41e9bc820a9d9a15b6.tar yuzu-dc18a1261cb841502cbd8f41e9bc820a9d9a15b6.tar.gz yuzu-dc18a1261cb841502cbd8f41e9bc820a9d9a15b6.tar.bz2 yuzu-dc18a1261cb841502cbd8f41e9bc820a9d9a15b6.tar.lz yuzu-dc18a1261cb841502cbd8f41e9bc820a9d9a15b6.tar.xz yuzu-dc18a1261cb841502cbd8f41e9bc820a9d9a15b6.tar.zst yuzu-dc18a1261cb841502cbd8f41e9bc820a9d9a15b6.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/lm/lm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp index 93e1fde01..4e0b4ea09 100644 --- a/src/core/hle/service/lm/lm.cpp +++ b/src/core/hle/service/lm/lm.cpp @@ -286,7 +286,7 @@ private: } } - std::string DestinationToString(LogDestination destination) { + static std::string DestinationToString(LogDestination destination) { if (True(destination & LogDestination::All)) { return "TargetManager | Uart | UartSleep"; } |