From f79b7e5be47777c3c8969192517d23d3fd679f75 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 10 Jan 2021 22:43:16 +1000 Subject: [PATCH] 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? --- .../tools/MultiDiskBundler/MultiDiskBundler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs b/src/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs index 20f41d2735..7eaa832b06 100644 --- a/src/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs +++ b/src/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs @@ -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)) )) ) );