diff options
| author | bunnei <bunneidev@gmail.com> | 2020-12-08 21:58:13 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-08 21:58:13 -0800 |
| commit | 6f41763061082d5fa2ab039c554427152243cb46 (patch) | |
| tree | 158dde17ce9426c21c727f03a6e8651b09a2dade /src/core/hle/service/lm | |
| parent | 05a703e15d37265523b7f804e066a80ba14f0096 (diff) | |
| parent | 6b7320add44bf3d933063d0b93296222fd522ef6 (diff) | |
Merge pull request #5166 from lioncash/log-cast
core: Remove unnecessary enum casts in log calls
Diffstat (limited to 'src/core/hle/service/lm')
| -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); |
