VBoii - display text, and platform frame rate
This commit is contained in:
parent
d799624e9c
commit
9e1b00fd58
|
@ -27,6 +27,7 @@
|
|||
PSP,
|
||||
Playstation,
|
||||
WonderSwan,
|
||||
Libretro
|
||||
Libretro,
|
||||
VirtualBoy
|
||||
}
|
||||
}
|
||||
|
|
|
@ -144,6 +144,8 @@ namespace BizHawk.Client.Common
|
|||
return SystemInfo.AppleII;
|
||||
case "Libretro":
|
||||
return SystemInfo.Libretro;
|
||||
case "VB":
|
||||
return SystemInfo.VirtualBoy;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -174,10 +174,15 @@ namespace BizHawk.Client.Common
|
|||
public static SystemInfo TI83 { get; } = new SystemInfo("TI - 83", CoreSystem.TI83, 1);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the <see cref="SystemInfo"/> instance for TI-83
|
||||
/// Gets the <see cref="SystemInfo"/> instance for Wonderswan
|
||||
/// </summary>
|
||||
public static SystemInfo WonderSwan { get; } = new SystemInfo("WonderSwan", CoreSystem.WonderSwan, 1);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the <see cref="SystemInfo"/> instance for TI-83
|
||||
/// </summary>
|
||||
public static SystemInfo VirtualBoy { get; } = new SystemInfo("VirtualBoy", CoreSystem.VirtualBoy, 1);
|
||||
|
||||
#endregion Get SystemInfo
|
||||
|
||||
/// <summary>
|
||||
|
|
|
@ -33,7 +33,7 @@ namespace BizHawk.Client.Common
|
|||
["SG"] = (3579545 / 262.0 / 228.0), // 59.9227434043
|
||||
["SG_PAL"] = (3546893 / 313.0 / 228.0), // 49.7014320946
|
||||
["NGP"] = (6144000.0 / (515 * 198)), // 60.2530155928
|
||||
["VBOY"] = (20000000.0 / (259 * 384 * 4)), // 50.2734877735
|
||||
["VB"] = (20000000.0 / (259 * 384 * 4)), // 50.2734877735
|
||||
["Lynx"] = 16000000.0 / (16 * 105 * 159), // 59.89817310572028
|
||||
["WSWAN"] = (3072000.0 / (159 * 256)), // 75.4716981132
|
||||
["GB"] = 262144.0 / 4389.0, // 59.7275005696
|
||||
|
|
Loading…
Reference in New Issue