From 1d6a4460d0e741407ef5268c46dc3ad0fc26fd4b Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 10 Nov 2021 12:17:08 +1000 Subject: [PATCH] Group SGB in with GB/C in PathConfig (resolves #2992) breaks config --- .../config/PathEntryCollection.cs | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/BizHawk.Client.Common/config/PathEntryCollection.cs b/src/BizHawk.Client.Common/config/PathEntryCollection.cs index 9b3433d514..baf0dd383e 100644 --- a/src/BizHawk.Client.Common/config/PathEntryCollection.cs +++ b/src/BizHawk.Client.Common/config/PathEntryCollection.cs @@ -15,14 +15,14 @@ namespace BizHawk.Client.Common ["Global_NULL"] = "Global", ["INTV"] = "Intellivision", ["NES"] = "NES", - ["SNES_SGB"] = "SNES", + ["SNES"] = "SNES", ["GBA"] = "GBA", ["SMS"] = "SMS", ["GG"] = "GG", ["SG"] = "SG", ["GEN"] = "Genesis", ["PCE_PCECD_SGX"] = "PC Engine", - ["GB_GBC"] = "Gameboy", + ["GB_GBC_SGB"] = "Gameboy", ["DGB"] = "Dual Gameboy", ["TI83"] = "TI83", ["A26"] = "Atari 2600", @@ -171,12 +171,12 @@ namespace BizHawk.Client.Common new("NES", 5, "Cheats", Path.Combine(".", "Cheats")), new("NES", 6, "Palettes", Path.Combine(".", "Palettes")), - new("SNES_SGB", 0, "Base", Path.Combine(".", "SNES")), - new("SNES_SGB", 1, "ROM", "."), - new("SNES_SGB", 2, "Savestates", Path.Combine(".", "State")), - new("SNES_SGB", 3, "Save RAM", Path.Combine(".", "SaveRAM")), - new("SNES_SGB", 4, "Screenshots", Path.Combine(".", "Screenshots")), - new("SNES_SGB", 5, "Cheats", Path.Combine(".", "Cheats")), + new("SNES", 0, "Base", Path.Combine(".", "SNES")), + new("SNES", 1, "ROM", "."), + new("SNES", 2, "Savestates", Path.Combine(".", "State")), + new("SNES", 3, "Save RAM", Path.Combine(".", "SaveRAM")), + new("SNES", 4, "Screenshots", Path.Combine(".", "Screenshots")), + new("SNES", 5, "Cheats", Path.Combine(".", "Cheats")), new("GBA", 0, "Base", Path.Combine(".", "GBA")), new("GBA", 1, "ROM", "."), @@ -220,13 +220,13 @@ namespace BizHawk.Client.Common new("PCE_PCECD_SGX", 4, "Screenshots", Path.Combine(".", "Screenshots")), new("PCE_PCECD_SGX", 5, "Cheats", Path.Combine(".", "Cheats")), - new("GB_GBC", 0, "Base", Path.Combine(".", "Gameboy")), - new("GB_GBC", 1, "ROM", "."), - new("GB_GBC", 2, "Savestates", Path.Combine(".", "State")), - new("GB_GBC", 3, "Save RAM", Path.Combine(".", "SaveRAM")), - new("GB_GBC", 4, "Screenshots", Path.Combine(".", "Screenshots")), - new("GB_GBC", 5, "Cheats", Path.Combine(".", "Cheats")), - new("GB_GBC", 6, "Palettes", Path.Combine(".", "Palettes")), + new("GB_GBC_SGB", 0, "Base", Path.Combine(".", "Gameboy")), + new("GB_GBC_SGB", 1, "ROM", "."), + new("GB_GBC_SGB", 2, "Savestates", Path.Combine(".", "State")), + new("GB_GBC_SGB", 3, "Save RAM", Path.Combine(".", "SaveRAM")), + new("GB_GBC_SGB", 4, "Screenshots", Path.Combine(".", "Screenshots")), + new("GB_GBC_SGB", 5, "Cheats", Path.Combine(".", "Cheats")), + new("GB_GBC_SGB", 6, "Palettes", Path.Combine(".", "Palettes")), new("DGB", 0, "Base", Path.Combine(".", "Dual Gameboy")), new("DGB", 1, "ROM", "."),