Skip to content

Commit

Permalink
Fix alignment bug in PSISOIMG
Browse files Browse the repository at this point in the history
Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
  • Loading branch information
sahlberg committed Aug 7, 2024
1 parent 3477db0 commit 644d1f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion popstation.py
Original file line number Diff line number Diff line change
Expand Up @@ -3202,7 +3202,7 @@ def create_pbp(self):
else:
# If there is no PSTITLEIMG then the PSISOIMG will be aligned
# on the next 0x10000 boundary.
fh.seek( (fh.tell() + 0x10000) & 0xffff0000 )
fh.seek( (fh.tell() + 0xffff) & 0xffff0000 )

disc_num = 0
psiso_offsets = []
Expand Down

0 comments on commit 644d1f0

Please sign in to comment.