Skip to content

Commit

Permalink
Fix bitfields
Browse files Browse the repository at this point in the history
  • Loading branch information
igor725 committed Jun 14, 2024
1 parent 110a547 commit a536df5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/external/libScePlayGo/chunkreader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,9 @@ class GoReader {
};

struct playgo_mchunk_attr_ent {
uint64_t loc : 48;
uint64_t size : 48;
uint64_t loc;
uint64_t size : 48;
uint16_t align : 16;
};

#pragma pack(pop)
Expand Down

0 comments on commit a536df5

Please sign in to comment.