Fixed sm64 factories being disabled on torch

This commit is contained in:
KiritoDv
2026-01-07 10:18:25 -06:00
parent 45e0245cae
commit 50323238d0
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -191,11 +191,11 @@ bool GameExtractor::GenerateOTR() const {
const std::string game_path = Ship::Context::GetAppDirectoryPath();
Companion::Instance = new Companion(this->mGameData, ArchiveType::O2R, false, assets_path, game_path);
Companion::Instance->SetAdditionalFiles({ "meta/mods.toml" });
try {
Companion::Instance->Init(ExportType::Binary);
} catch (const std::exception& e) {
SPDLOG_INFO("Failed to process O2R {}", e.what());
return false;
}