Skip to content

Commit

Permalink
Remove existing code.bin in folder (#516)
Browse files Browse the repository at this point in the history
ThanatosGit authored Jan 25, 2025
1 parent 231ec5f commit 5f01e90
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/open_samus_returns_rando/samus_returns_patcher.py
Original file line number Diff line number Diff line change
@@ -70,6 +70,9 @@ def cleanup_old_patcher(output_path: Path) -> None:
out_code = output_path.joinpath("code.bps")
out_code.unlink(missing_ok=True)

out_code = output_path.joinpath("code.bin")
out_code.unlink(missing_ok=True)

out_exheader = output_path.joinpath("exheader.bin")
out_exheader.unlink(missing_ok=True)

0 comments on commit 5f01e90

Please sign in to comment.