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:
YoshiRulz 2021-01-10 22:43:16 +10:00
parent ea0d6b04d8
commit f79b7e5be4
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
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(basePath, n))
new XAttribute("FileName", PathExtensions.GetRelativePath(n, basePath))
))
)
);