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
3 changes: 2 additions & 1 deletion me_cleaner.py
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,8 @@ def start_end_to_flreg(start, end):
("SET" if pchstrp0 & 1 << 16 else "NOT SET"))

# Generation 1: wipe everything and disable the ME region
if gen == 1 and me_start < me_end and not args.check:
if gen == 1 and me_start < me_end and not args.check and not \
args.soft_disable_only:
print("Disabling the ME region...")
f.seek(frba + 0x8)
f.write(pack("<I", 0x1fff))
Expand Down