summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/friend/friend.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-12-09 06:58:13 +0100
committerGitHub <noreply@github.com>2020-12-09 06:58:13 +0100
commit6f41763061082d5fa2ab039c554427152243cb46 (patch)
tree158dde17ce9426c21c727f03a6e8651b09a2dade /src/core/hle/service/friend/friend.cpp
parentMerge pull request #5135 from Morph1984/applets-shadow (diff)
parentcore: Remove unnecessary enum casts in log calls (diff)
downloadyuzu-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/friend/friend.cpp')
-rw-r--r--src/core/hle/service/friend/friend.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/friend/friend.cpp b/src/core/hle/service/friend/friend.cpp
index 40a289594..c5b053c31 100644
--- a/src/core/hle/service/friend/friend.cpp
+++ b/src/core/hle/service/friend/friend.cpp
@@ -229,8 +229,7 @@ private:
break;
default:
// HOS seems not have an error case for an unknown notification
- LOG_WARNING(Service_ACC, "Unknown notification {:08X}",
- static_cast<u32>(notification.notification_type));
+ LOG_WARNING(Service_ACC, "Unknown notification {:08X}", notification.notification_type);
break;
}