Use --dsd path correctly

This commit is contained in:
Aetias
2025-03-15 16:42:04 +01:00
parent 4392bb30eb
commit 5a69a08169
+1 -1
View File
@@ -95,7 +95,7 @@ if platform is None:
exit(1)
EXE = platform.exe
WINE = args.wine if platform.system != "windows" else ""
DSD = os.path.join('.', str(root_path / f"dsd{EXE}"))
DSD = args.dsd or os.path.join('.', str(root_path / f"dsd{EXE}"))
OBJDIFF = os.path.join('.', str(root_path / f"objdiff-cli{EXE}"))
CC = os.path.join('.', str(mwcc_path / "mwccarm.exe"))
LD = os.path.join('.', str(mwcc_path / "mwldarm.exe"))