summaryrefslogtreecommitdiff
path: root/soh/macosx
diff options
context:
space:
mode:
authorAdam Bird <Archez@users.noreply.github.com>2023-09-19 10:30:48 -0400
committerGitHub <noreply@github.com>2023-09-19 09:30:48 -0500
commitbb643661f62865dfc757c185d0daaebb32f2d53d (patch)
treebc5a89a5bbb5ebf1eb338fe287e1247fad1a123f /soh/macosx
parentdf6c01732ad8c4b2eca41af6b3b2d4dd5fc5c39c (diff)
GC PAL MQ Retail support (#3167)
* initial pal mq retail support * more mq pal support * pal mq support in the launch scripts * more offset fixes * match tluts with mq debug * update support hashes doc * target lus commit for playtesting * more offset fixes * add hashes for other formats * decomp name sync * add scripted texture definitions * fix up from other xml changes * update name
Diffstat (limited to 'soh/macosx')
-rwxr-xr-xsoh/macosx/soh-macos.sh13
1 files changed, 12 insertions, 1 deletions
diff --git a/soh/macosx/soh-macos.sh b/soh/macosx/soh-macos.sh
index bf39648c6..ee2356ab3 100755
--- a/soh/macosx/soh-macos.sh
+++ b/soh/macosx/soh-macos.sh
@@ -9,7 +9,7 @@ export DYLD_FALLBACK_LIBRARY_PATH="$LIBPATH"
remap_hashes ()
{
- # Remap v64 and n64 hashes to their z64 has equivalent
+ # Remap v64 and n64 hashes to their z64 hash equivalent
# ZAPD will handle converting the data into z64 format
case "$ROMHASH" in
a9059b56e761c9034fbe02fe4c24985aaa835dac) # v64
@@ -30,6 +30,12 @@ remap_hashes ()
24c73d378b0620a380ce5ef9f2b186c6c157a68b) # n64
ROMHASH=cfbb98d392e4a9d39da8285d10cbef3974c2f012
;;
+ 8ebf2e29313f44f2d49e5b4191971d09919e8e48) # v64
+ ROMHASH=f46239439f59a2a594ef83cf68ef65043b1bffe2
+ ;;
+ 4264bf7b875737b8fae77d52322a5099d051fc11) # n64
+ ROMHASH=f46239439f59a2a594ef83cf68ef65043b1bffe2
+ ;;
973bc6fe56010a8d646166a1182a81b4f13b8cf9) # v64
ROMHASH=50bebedad9e0f10746a52b07239e47fa6c284d03
;;
@@ -99,6 +105,8 @@ if [ ! -e "$SHIP_HOME"/oot.otr ] || [ ! -e "$SHIP_HOME"/oot-mq.otr ]; then
ROM_TYPE=0;;
cfbb98d392e4a9d39da8285d10cbef3974c2f012)
ROM_TYPE=0;;
+ f46239439f59a2a594ef83cf68ef65043b1bffe2)
+ ROM_TYPE=1;;
50bebedad9e0f10746a52b07239e47fa6c284d03)
ROM_TYPE=1;;
079b855b943d6ad8bd1eb026c0ed169ecbdac7da)
@@ -184,6 +192,9 @@ if [ ! -e "$SHIP_HOME"/oot.otr ] || [ ! -e "$SHIP_HOME"/oot-mq.otr ]; then
cfbb98d392e4a9d39da8285d10cbef3974c2f012)
ROM=N64_PAL_11
OTRNAME="oot.otr";;
+ f46239439f59a2a594ef83cf68ef65043b1bffe2)
+ ROM=GC_MQ_PAL_F
+ OTRNAME="oot-mq.otr";;
50bebedad9e0f10746a52b07239e47fa6c284d03)
ROM=GC_MQ_D
OTRNAME="oot-mq.otr";;