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; }