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:
parent
a759e26265
commit
db74bd8426
|
@ -213,7 +213,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
new XElement("LoadAssets",
|
new XElement("LoadAssets",
|
||||||
names.Select(n => new XElement(
|
names.Select(n => new XElement(
|
||||||
"Asset",
|
"Asset",
|
||||||
new XAttribute("FileName", PathExtensions.GetRelativePath(n, basePath))
|
new XAttribute("FileName", PathExtensions.GetRelativePath(basePath, n))
|
||||||
))
|
))
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue