Skip to content

Commit

Permalink
Add ROMPatcher
Browse files Browse the repository at this point in the history
- Group patches by platform
  • Loading branch information
bbtufty committed Nov 30, 2024
1 parent 28beb1b commit 8147dba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion romsearch/modules/rompatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def run(
"""Run the ROMPatcher"""

filename_no_ext = os.path.splitext(os.path.basename(file))[0]
patch_dir = str(os.path.join(self.patch_dir, filename_no_ext))
patch_dir = str(os.path.join(self.patch_dir, self.platform, filename_no_ext))

# Clean out and create patch directory
if os.path.exists(patch_dir):
Expand Down

0 comments on commit 8147dba

Please sign in to comment.