diff --git a/src/BizHawk.Client.Common/config/PathEntryCollection.cs b/src/BizHawk.Client.Common/config/PathEntryCollection.cs index 66ecba2816..e90b601ff2 100644 --- a/src/BizHawk.Client.Common/config/PathEntryCollection.cs +++ b/src/BizHawk.Client.Common/config/PathEntryCollection.cs @@ -370,7 +370,14 @@ namespace BizHawk.Client.Common new PathEntry { System = "UZE", SystemDisplayName = "UZE", Type = "Savestates", Path = Path.Combine(".", "State"), Ordinal = 2 }, new PathEntry { System = "UZE", SystemDisplayName = "UZE", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 }, new PathEntry { System = "UZE", SystemDisplayName = "UZE", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 }, - new PathEntry { System = "UZE", SystemDisplayName = "UZE", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 } + new PathEntry { System = "UZE", SystemDisplayName = "UZE", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 }, + + new PathEntry { System = "NDS", SystemDisplayName = "NDS", Type = "Base", Path = Path.Combine(".", "NDS"), Ordinal = 0 }, + new PathEntry { System = "NDS", SystemDisplayName = "NDS", Type = "ROM", Path = ".", Ordinal = 1 }, + new PathEntry { System = "NDS", SystemDisplayName = "NDS", Type = "Savestates", Path = Path.Combine(".", "State"), Ordinal = 2 }, + new PathEntry { System = "NDS", SystemDisplayName = "NDS", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 }, + new PathEntry { System = "NDS", SystemDisplayName = "NDS", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 }, + new PathEntry { System = "NDS", SystemDisplayName = "NDS", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 } }; } }