Skip to content

Commit

Permalink
Merge pull request #2 from carlosjdelgado/main
Browse files Browse the repository at this point in the history
Add support for 7z rom files
  • Loading branch information
hyongju authored Jul 13, 2024
2 parents f4c2b27 + 9d284b7 commit 3bb60e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def main(argv):
file_extension = filename.split('.')[1]

# if (df['rom_name'].eq(actual_filename)).any() and file_extension == 'zip' and filename not in excluded_files:
if (df['rom_name'].eq(actual_filename)).any() and file_extension == 'zip':
if (df['rom_name'].eq(actual_filename)).any() and (file_extension == 'zip' or file_extension == '7z'):
cnt = cnt+1
# print('counter:' + str(count))
game_name = df['game_name'][df['rom_name'].eq(actual_filename)].tolist()[0]
Expand Down

0 comments on commit 3bb60e9

Please sign in to comment.