From 87191385b8fa6ea33a3967e533ccc585731f14f3 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 18 Nov 2021 21:31:20 +1000 Subject: [PATCH] Fix Channel F and Uzebox default paths overlapping with other systems --- src/BizHawk.Client.Common/config/PathEntryCollection.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/config/PathEntryCollection.cs b/src/BizHawk.Client.Common/config/PathEntryCollection.cs index d5053639a4..64594b1bb7 100644 --- a/src/BizHawk.Client.Common/config/PathEntryCollection.cs +++ b/src/BizHawk.Client.Common/config/PathEntryCollection.cs @@ -369,7 +369,7 @@ namespace BizHawk.Client.Common new(VSystemID.Raw.PCFX, 4, "Screenshots", Path.Combine(".", "Screenshots")), new(VSystemID.Raw.PCFX, 5, "Cheats", Path.Combine(".", "Cheats")), - new(VSystemID.Raw.ChannelF, 0, "Base", Path.Combine(".", "ZXSpectrum")), + new(VSystemID.Raw.ChannelF, 0, "Base", Path.Combine(".", "Channel F")), new(VSystemID.Raw.ChannelF, 1, "ROM", "."), new(VSystemID.Raw.ChannelF, 2, "Savestates", Path.Combine(".", "State")), new(VSystemID.Raw.ChannelF, 4, "Screenshots", Path.Combine(".", "Screenshots")), @@ -410,7 +410,7 @@ namespace BizHawk.Client.Common new(VSystemID.Raw.MSX, 4, "Screenshots", Path.Combine(".", "Screenshots")), new(VSystemID.Raw.MSX, 5, "Cheats", Path.Combine(".", "Cheats")), - new(VSystemID.Raw.UZE, 0, "Base", Path.Combine(".", "VEC")), + new(VSystemID.Raw.UZE, 0, "Base", Path.Combine(".", "Uzebox")), new(VSystemID.Raw.UZE, 1, "ROM", "."), new(VSystemID.Raw.UZE, 2, "Savestates", Path.Combine(".", "State")), new(VSystemID.Raw.UZE, 3, "Save RAM", Path.Combine(".", "SaveRAM")),