diff --git a/BizHawk.MultiClient/config/PathManager.cs b/BizHawk.MultiClient/config/PathManager.cs index 5c84612352..62bce82cdc 100644 --- a/BizHawk.MultiClient/config/PathManager.cs +++ b/BizHawk.MultiClient/config/PathManager.cs @@ -11,7 +11,11 @@ namespace BizHawk.MultiClient { public static string GetExePathAbsolute() { - return Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase); + string p = Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase); + if (p.Substring(0, 6) == "file:\\") + p = p.Remove(0, 6); + string z = p; + return p; } public static string GetBasePathAbsolute()