revert f79b7e5 , fixes multi disk bundler. This works on Windows, maybe linux needs a different implementation, but GetRelativePath appears tailored to Windows and had been working fine the original way.

This commit is contained in:
alyosha-tas 2021-01-25 18:09:25 -05:00
parent a759e26265
commit db74bd8426
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ namespace BizHawk.Client.EmuHawk
new XElement("LoadAssets",
names.Select(n => new XElement(
"Asset",
new XAttribute("FileName", PathExtensions.GetRelativePath(n, basePath))
new XAttribute("FileName", PathExtensions.GetRelativePath(basePath, n))
))
)
);