scripts: support new jak 2 decompiler config versions via task (#2543)

This commit is contained in:
Tyler Wilding
2023-04-24 19:14:59 -05:00
committed by GitHub
parent 4ca697b81a
commit 83f43b7153
2 changed files with 8 additions and 1 deletions
+4
View File
@@ -31,6 +31,10 @@ tasks:
desc: "NTSC-J region version"
cmds:
- 'python ./scripts/tasks/update-env.py --decomp_config ntscjp'
set-decomp-ntscko:
desc: "NTSC-K region version"
cmds:
- 'python ./scripts/tasks/update-env.py --decomp_config ntscko'
# GENERAL
extract:
desc: "Extracts the game's assets from './iso_data' with the set decompiler config"
+4 -1
View File
@@ -50,7 +50,10 @@ decomp_config_version_map = {
},
"jak2": {
"ntscv1": "ntsc_v1",
"pal": "pal"
"ntscv2": "ntsc_v2",
"pal": "pal",
"ntscjp": "jp",
"ntscko": "kor"
}
}