NGP - paths, display text

This commit is contained in:
adelikat 2017-05-31 19:09:31 -05:00
parent 5394e6336b
commit fda9812688
4 changed files with 17 additions and 2 deletions

View File

@ -28,6 +28,7 @@
Playstation,
WonderSwan,
Libretro,
VirtualBoy
VirtualBoy,
NeoGeoPocket
}
}

View File

@ -146,6 +146,8 @@ namespace BizHawk.Client.Common
return SystemInfo.Libretro;
case "VB":
return SystemInfo.VirtualBoy;
case "NGP":
return SystemInfo.NeoGeoPocket;
}
}
}

View File

@ -178,10 +178,15 @@ namespace BizHawk.Client.Common
/// </summary>
public static SystemInfo WonderSwan { get; } = new SystemInfo("WonderSwan", CoreSystem.WonderSwan, 1);
/// <summary>
/// Gets the <see cref="SystemInfo"/> instance for Virtual Boy
/// </summary>
public static SystemInfo VirtualBoy { get; } = new SystemInfo("Virtual Boy", CoreSystem.VirtualBoy, 1);
/// <summary>
/// Gets the <see cref="SystemInfo"/> instance for TI-83
/// </summary>
public static SystemInfo VirtualBoy { get; } = new SystemInfo("VirtualBoy", CoreSystem.VirtualBoy, 1);
public static SystemInfo NeoGeoPocket { get; } = new SystemInfo("Neo-Geo Pocket", CoreSystem.NeoGeoPocket, 1);
#endregion Get SystemInfo

View File

@ -351,6 +351,13 @@ namespace BizHawk.Client.Common
new PathEntry { System = "VB", SystemDisplayName = "VB", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
new PathEntry { System = "VB", SystemDisplayName = "VB", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
new PathEntry { System = "VB", SystemDisplayName = "VB", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
new PathEntry { System = "NGP", SystemDisplayName = "NGP", Type = "Base", Path = Path.Combine(".", "NGP"), Ordinal = 0 },
new PathEntry { System = "NGP", SystemDisplayName = "NGP", Type = "ROM", Path = ".", Ordinal = 1 },
new PathEntry { System = "NGP", SystemDisplayName = "NGP", Type = "Savestates", Path = Path.Combine(".", "State"), Ordinal = 2 },
new PathEntry { System = "NGP", SystemDisplayName = "NGP", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
new PathEntry { System = "NGP", SystemDisplayName = "NGP", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
new PathEntry { System = "NGP", SystemDisplayName = "NGP", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
};
}
}