Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pup_fiction.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def decrypt_selfs(in_dir, out_dir, blacklist=None):
for root, dirs, files in os.walk(in_dir):
for filename in files:
name, ext = os.path.splitext(filename)
if ext in [".self", ".skprx", ".suprx"] and filename not in blacklist:
if (ext in [".self", ".skprx", ".suprx"] or filename == "eboot.bin") and filename not in blacklist:
relpath = os.path.relpath(root, in_dir)
mkdir_p(os.path.join(out_dir, relpath))

Expand Down