summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar David Marcec2019-06-25 15:19:37 +1000
committerGravatar David Marcec2019-06-25 15:19:37 +1000
commit192f1f7ebe65e492fcdc0ac81d39b4277a7d5f6c (patch)
treea2797082bd6f9eb9305feb00595318b833747c1f /src/core
parentfixed spelling errors and fixed issue with Pop not returning the SizedNotific... (diff)
downloadyuzu-192f1f7ebe65e492fcdc0ac81d39b4277a7d5f6c.tar.gz
yuzu-192f1f7ebe65e492fcdc0ac81d39b4277a7d5f6c.tar.xz
yuzu-192f1f7ebe65e492fcdc0ac81d39b4277a7d5f6c.zip
SizedNotificationInfo should be 0x10 bytes, user_uuid is incorrect, this should be the users account id
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/friend/friend.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/friend/friend.cpp b/src/core/hle/service/friend/friend.cpp
index a00d7dce7..296babc7c 100644
--- a/src/core/hle/service/friend/friend.cpp
+++ b/src/core/hle/service/friend/friend.cpp
@@ -198,8 +198,10 @@ private:
198 NotificationTypes notification_type; 198 NotificationTypes notification_type;
199 INSERT_PADDING_WORDS( 199 INSERT_PADDING_WORDS(
200 1); // TODO(ogniK): This doesn't seem to be used within any IPC returns as of now 200 1); // TODO(ogniK): This doesn't seem to be used within any IPC returns as of now
201 Common::UUID user_uuid; 201 u64_le account_id;
202 }; 202 };
203 static_assert(sizeof(SizedNotificationInfo) == 0x10,
204 "SizedNotificationInfo is an incorrect size");
203 205
204 struct States { 206 struct States {
205 bool has_updated_friends; 207 bool has_updated_friends;