From 192f1f7ebe65e492fcdc0ac81d39b4277a7d5f6c Mon Sep 17 00:00:00 2001 From: David Marcec Date: Tue, 25 Jun 2019 15:19:37 +1000 Subject: SizedNotificationInfo should be 0x10 bytes, user_uuid is incorrect, this should be the users account id --- src/core/hle/service/friend/friend.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/core/hle/service/friend') 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: NotificationTypes notification_type; INSERT_PADDING_WORDS( 1); // TODO(ogniK): This doesn't seem to be used within any IPC returns as of now - Common::UUID user_uuid; + u64_le account_id; }; + static_assert(sizeof(SizedNotificationInfo) == 0x10, + "SizedNotificationInfo is an incorrect size"); struct States { bool has_updated_friends; -- cgit v1.2.3