diff options
author | bunnei <bunneidev@gmail.com> | 2020-12-09 06:58:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 06:58:13 +0100 |
commit | 6f41763061082d5fa2ab039c554427152243cb46 (patch) | |
tree | 158dde17ce9426c21c727f03a6e8651b09a2dade /src/core/hle/service/lm/lm.cpp | |
parent | Merge pull request #5135 from Morph1984/applets-shadow (diff) | |
parent | core: Remove unnecessary enum casts in log calls (diff) | |
download | yuzu-6f41763061082d5fa2ab039c554427152243cb46.tar yuzu-6f41763061082d5fa2ab039c554427152243cb46.tar.gz yuzu-6f41763061082d5fa2ab039c554427152243cb46.tar.bz2 yuzu-6f41763061082d5fa2ab039c554427152243cb46.tar.lz yuzu-6f41763061082d5fa2ab039c554427152243cb46.tar.xz yuzu-6f41763061082d5fa2ab039c554427152243cb46.tar.zst yuzu-6f41763061082d5fa2ab039c554427152243cb46.zip |
Diffstat (limited to 'src/core/hle/service/lm/lm.cpp')
-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 f884b2735..8e49b068c 100644 --- a/src/core/hle/service/lm/lm.cpp +++ b/src/core/hle/service/lm/lm.cpp @@ -68,7 +68,7 @@ private: IPC::RequestParser rp{ctx}; const auto destination = rp.PopEnum<DestinationFlag>(); - LOG_DEBUG(Service_LM, "called, destination={:08X}", static_cast<u32>(destination)); + LOG_DEBUG(Service_LM, "called, destination={:08X}", destination); manager.SetDestination(destination); |