From 7c3635587b0927bc0a88ca3baeec32111da6fc9e Mon Sep 17 00:00:00 2001 From: Skyth <19259897+blueskythlikesclouds@users.noreply.github.com> Date: Tue, 31 Dec 2024 20:06:52 +0300 Subject: [PATCH] Fix UMM/HMM ARL file path inconsistency. --- UnleashedRecomp/mod/mod_loader.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/UnleashedRecomp/mod/mod_loader.cpp b/UnleashedRecomp/mod/mod_loader.cpp index 79104c1e..216b20f7 100644 --- a/UnleashedRecomp/mod/mod_loader.cpp +++ b/UnleashedRecomp/mod/mod_loader.cpp @@ -441,12 +441,14 @@ PPC_FUNC(sub_82E0D3E8) if (appendArlFilePath.empty()) { if (arlFilePath.empty()) + { arlFilePath = arlFilePathU8; + arlFilePath += ".arl"; + } appendArlFilePath = arlFilePath.parent_path(); appendArlFilePath /= "+"; appendArlFilePath += arlFilePath.filename(); - appendArlFilePath += ".arl"; } loadUncachedFile(appendArlFilePath, true);