Add default DS paths (fixes #2062)
This commit is contained in:
parent
0b07e38bdf
commit
6f809de609
|
@ -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 }
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue