Skip to content

Commit

Permalink
Fix alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
thatguy11325 committed Jun 29, 2024
1 parent ee8207c commit 2e5c2ac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pokemonred_puffer/data/party.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@


class BoxStruct(Structure):
_pack_ = 1
_fields_ = [
("Species", c_uint8),
("HP", c_uint16),
Expand All @@ -26,6 +27,7 @@ class BoxStruct(Structure):


class PartyStruct(Structure):
_pack_ = 1
_fields_ = BoxStruct._fields_ + [
("Level", c_uint8),
("MaxHP", c_uint16),
Expand Down

0 comments on commit 2e5c2ac

Please sign in to comment.