Atlas-Install/source/wszst/wstrt.py

10 lines
No EOL
318 B
Python

from . import *
def patch(path: str) -> None:
"""
Patch the main.dol file
:param path: path to the game
"""
subprocess.run(["./tools/szs/wstrt", "patch", path + "/sys/main.dol", "--clean-dol", "--add-lecode"],
creationflags=CREATE_NO_WINDOW, check=True, stdout=subprocess.PIPE)