summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii/types/char_info.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/mii/types/char_info.cpp')
-rw-r--r--src/core/hle/service/mii/types/char_info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/mii/types/char_info.cpp b/src/core/hle/service/mii/types/char_info.cpp
index e1d874860..0f9c37b84 100644
--- a/src/core/hle/service/mii/types/char_info.cpp
+++ b/src/core/hle/service/mii/types/char_info.cpp
@@ -425,7 +425,7 @@ u8 CharInfo::GetMoleY() const {
bool CharInfo::operator==(const CharInfo& info) {
bool is_identical = info.Verify() == 0;
- is_identical &= name == info.GetNickname();
+ is_identical &= name.data == info.GetNickname().data;
is_identical &= create_id == info.GetCreateId();
is_identical &= font_region == info.GetFontRegion();
is_identical &= favorite_color == info.GetFavoriteColor();