Add default DS paths (fixes #2062)

This commit is contained in:
alyosha-tas 2020-07-05 13:54:36 -04:00
parent 0b07e38bdf
commit 6f809de609
1 changed files with 8 additions and 1 deletions

View File

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