summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouist103 <35883445+louist103@users.noreply.github.com>2025-03-30 20:40:40 -0400
committerlouist103 <35883445+louist103@users.noreply.github.com>2025-03-30 20:40:40 -0400
commit35dbf63b4e70a21744ce6ecf9dff7db266b4f2d5 (patch)
tree95557da733375dddfe229aa227f212b509a993eb
parent68673b8061a4c3fc9da427686463a43de91e4f29 (diff)
MM FIxes
-rw-r--r--OTRExporter/Main.cpp3
-rwxr-xr-xextract_assets.py2
2 files changed, 2 insertions, 3 deletions
diff --git a/OTRExporter/Main.cpp b/OTRExporter/Main.cpp
index dc65556..aff12cb 100644
--- a/OTRExporter/Main.cpp
+++ b/OTRExporter/Main.cpp
@@ -32,8 +32,7 @@
#include "ExporterArchiveOTR.h"
#ifdef GAME_MM
-std::string otrFileName = "mm.o2r";
-
+std::string archiveFileName = "mm.o2r";
#elif GAME_OOT
std::string archiveFileName = "oot.o2r";
#endif
diff --git a/extract_assets.py b/extract_assets.py
index 645ab85..2ad8091 100755
--- a/extract_assets.py
+++ b/extract_assets.py
@@ -26,7 +26,7 @@ def BuildOTR(xmlPath, rom, isMM, zapd_exe=None, genHeaders=None, customAssetsPat
# generate otrs, but not headers
if isMM:
exec_cmd.extend(["-gsf", "0", "-se", "OTR", "--customAssetsPath", customAssetsPath,
- "--customOtrFile", customOtrFile, "--otrfile", "soh.o2r"])
+ "--customOtrFile", customOtrFile, "--otrfile", "mm.o2r"])
else:
exec_cmd.extend(["-gsf", "0", "-se", "OTR", "--customAssetsPath", customAssetsPath,
"--customOtrFile", customOtrFile, "--otrfile", "oot.o2r"])