From 466058140b35482f364abfceebd8c1b2ab537782 Mon Sep 17 00:00:00 2001 From: SwareJonge <41187958+SwareJonge@users.noreply.github.com> Date: Sun, 28 Jul 2024 20:17:30 +0200 Subject: [PATCH] Fix sjiswrap path for Windows --- common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.py b/common.py index 0554d158..14df4b33 100644 --- a/common.py +++ b/common.py @@ -215,12 +215,12 @@ CC = os.path.join(CODEWARRIOR, "mwcceppc.exe") CC_R = os.path.join(CODEWARRIOR_RODATA_POOL_FIX, "mwcceppc.exe") OCC = os.path.join(SDK_CW, "mwcceppc.exe") LD = os.path.join(CODEWARRIOR, "mwldeppc.exe") -SJISWRAP = f"{TOOLS}/sjiswrap.exe" if platform != "win32": LD = f"wibo {LD}" - SJISWRAP = f"wibo {SJISWRAP}" + SJISWRAP = f"wibo {TOOLS}/sjiswrap.exe" else: ORTHRUS = os.path.join(TOOLS, "orthrus.exe") + SJISWRAP = os.path.join(TOOLS, "sjiswrap.exe") # DevkitPPC DEVKITPPC = os.environ.get("DEVKITPPC")