Skip to content

Commit

Permalink
feat(game_files): update GameDataHash (Yimura#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-X-GTA authored Sep 17, 2024
1 parent 0fdaa5d commit 513cd0d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions game_files/GameDataHash.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class GameDataHash
{
public:
bool m_is_japanese_version;
std::array<rage::Obf32, 15> m_data;
std::array<rage::Obf32, 16> m_data;
};
static_assert(sizeof(GameDataHash) == 0xF4);
static_assert(sizeof(GameDataHash) == 0x104);
#pragma pack(pop)
2 changes: 1 addition & 1 deletion network/CMsgJoinRequest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ class CMsgJoinRequest
rage::rlGamerHandle m_gamer_handle;
CNetGamePlayerDataMsg m_player_data_msg;
};
static_assert(sizeof(CMsgJoinRequest) == 0x168);
static_assert(sizeof(CMsgJoinRequest) == 0x178);
#pragma pack(pop)

0 comments on commit 513cd0d

Please sign in to comment.