From 481a48fe85c47f6213623b27783ad443ddb75cba Mon Sep 17 00:00:00 2001 From: nattthebear Date: Mon, 8 Jun 2020 16:59:04 -0400 Subject: [PATCH] Fix path config on loonix Somewhere things are being normalized wrong and I don't care to find out where. This is correct and functional on all systems. --- src/BizHawk.Client.Common/config/PathEntry.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/config/PathEntry.cs b/src/BizHawk.Client.Common/config/PathEntry.cs index 58526274d7..6b2e1e2601 100644 --- a/src/BizHawk.Client.Common/config/PathEntry.cs +++ b/src/BizHawk.Client.Common/config/PathEntry.cs @@ -1,4 +1,5 @@ using System.Linq; +using Newtonsoft.Json; namespace BizHawk.Client.Common { @@ -6,7 +7,13 @@ namespace BizHawk.Client.Common { public string SystemDisplayName { get; set; } public string Type { get; set; } - public string Path { get; set; } + [JsonIgnore] + private string _path; + public string Path + { + get => _path; + set => _path = value.Replace('\\', '/'); + } public string System { get; set; } public int Ordinal { get; set; }