Fix UMM/HMM ARL file path inconsistency.

This commit is contained in:
Skyth 2024-12-31 20:06:52 +03:00
parent d363031399
commit 7c3635587b

View file

@ -441,12 +441,14 @@ PPC_FUNC(sub_82E0D3E8)
if (appendArlFilePath.empty()) if (appendArlFilePath.empty())
{ {
if (arlFilePath.empty()) if (arlFilePath.empty())
{
arlFilePath = arlFilePathU8; arlFilePath = arlFilePathU8;
arlFilePath += ".arl";
}
appendArlFilePath = arlFilePath.parent_path(); appendArlFilePath = arlFilePath.parent_path();
appendArlFilePath /= "+"; appendArlFilePath /= "+";
appendArlFilePath += arlFilePath.filename(); appendArlFilePath += arlFilePath.filename();
appendArlFilePath += ".arl";
} }
loadUncachedFile(appendArlFilePath, true); loadUncachedFile(appendArlFilePath, true);