Fix order of arguments to GetRelativePath
These have been backwards since the feature was added (5f2e2f39b
). Does the
Windows implementation of GetRelativePath not return weird results?
This commit is contained in:
parent
ea0d6b04d8
commit
f79b7e5be4
|
@ -213,7 +213,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
new XElement("LoadAssets",
|
||||
names.Select(n => new XElement(
|
||||
"Asset",
|
||||
new XAttribute("FileName", PathExtensions.GetRelativePath(basePath, n))
|
||||
new XAttribute("FileName", PathExtensions.GetRelativePath(n, basePath))
|
||||
))
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue