From d64be5ed76689c9c95471c23e7f5ce007ae9b710 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 21 Nov 2014 01:32:15 +0000 Subject: [PATCH] SystemID is Lynx not LYNX, cuz I said so --- BizHawk.Client.Common/Global.cs | 2 +- BizHawk.Client.Common/config/PathEntry.cs | 12 ++++++------ BizHawk.Client.Common/movie/PlatformFrameRates.cs | 2 +- .../movie/bk2/Bk2MnemonicConstants.cs | 2 +- BizHawk.Client.EmuHawk/config/FirmwaresConfig.cs | 2 +- BizHawk.Emulation.Common/Database/Database.cs | 2 +- .../Database/FirmwareDatabase.cs | 2 +- BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.cs | 8 ++++---- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/BizHawk.Client.Common/Global.cs b/BizHawk.Client.Common/Global.cs index ad2d44fa78..acd6fdc11e 100644 --- a/BizHawk.Client.Common/Global.cs +++ b/BizHawk.Client.Common/Global.cs @@ -136,7 +136,7 @@ namespace BizHawk.Client.Common return SystemInfo.DualGB; case "WSWAN": return SystemInfo.WonderSwan; - case "LYNX": + case "Lynx": return SystemInfo.Lynx; } } diff --git a/BizHawk.Client.Common/config/PathEntry.cs b/BizHawk.Client.Common/config/PathEntry.cs index 140dc8a281..de9f552a3e 100644 --- a/BizHawk.Client.Common/config/PathEntry.cs +++ b/BizHawk.Client.Common/config/PathEntry.cs @@ -296,12 +296,12 @@ namespace BizHawk.Client.Common new PathEntry { System = "WSWAN", SystemDisplayName = "WonderSwan", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 }, new PathEntry { System = "WSWAN", SystemDisplayName = "WonderSwan", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 }, - new PathEntry { System = "LYNX", SystemDisplayName = "Lynx", Type = "Base", Path = Path.Combine(".", "Lynx"), Ordinal = 0 }, - new PathEntry { System = "LYNX", SystemDisplayName = "Lynx", Type = "ROM", Path = ".", Ordinal = 1 }, - new PathEntry { System = "LYNX", SystemDisplayName = "Lynx", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 }, - new PathEntry { System = "LYNX", SystemDisplayName = "Lynx", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 }, - new PathEntry { System = "LYNX", SystemDisplayName = "Lynx", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 }, - new PathEntry { System = "LYNX", SystemDisplayName = "Lynx", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 }, + new PathEntry { System = "Lynx", SystemDisplayName = "Lynx", Type = "Base", Path = Path.Combine(".", "Lynx"), Ordinal = 0 }, + new PathEntry { System = "Lynx", SystemDisplayName = "Lynx", Type = "ROM", Path = ".", Ordinal = 1 }, + new PathEntry { System = "Lynx", SystemDisplayName = "Lynx", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 }, + new PathEntry { System = "Lynx", SystemDisplayName = "Lynx", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 }, + new PathEntry { System = "Lynx", SystemDisplayName = "Lynx", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 }, + new PathEntry { System = "Lynx", SystemDisplayName = "Lynx", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 }, }; } } diff --git a/BizHawk.Client.Common/movie/PlatformFrameRates.cs b/BizHawk.Client.Common/movie/PlatformFrameRates.cs index 547b8c1667..7f9a85af33 100644 --- a/BizHawk.Client.Common/movie/PlatformFrameRates.cs +++ b/BizHawk.Client.Common/movie/PlatformFrameRates.cs @@ -28,7 +28,7 @@ namespace BizHawk.Client.Common { "SG_PAL", (3546893 / 313.0 / 228.0) }, //49.7014320946 { "NGP", (6144000.0 / (515 * 198)) }, //60.2530155928 { "VBOY", (20000000 / (259 * 384 * 4)) }, //50.2734877735 - { "LYNX", 59.8 }, + { "Lynx", 59.8 }, { "WSWAN", (3072000.0 / (159 * 256)) }, //75.4716981132 { "GB", 262144.0 / 4389.0 }, //59.7275005696 { "GBC", 262144.0 / 4389.0 }, //59.7275005696 diff --git a/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs b/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs index bddb17fb08..a18b7584a7 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs @@ -240,7 +240,7 @@ namespace BizHawk.Client.Common } }, { - "LYNX", + "Lynx", new Dictionary { { "Option 1", '1' }, diff --git a/BizHawk.Client.EmuHawk/config/FirmwaresConfig.cs b/BizHawk.Client.EmuHawk/config/FirmwaresConfig.cs index 25a8da7371..6c5ed8ce80 100644 --- a/BizHawk.Client.EmuHawk/config/FirmwaresConfig.cs +++ b/BizHawk.Client.EmuHawk/config/FirmwaresConfig.cs @@ -47,7 +47,7 @@ namespace BizHawk.Client.EmuHawk { "GEN", "Genesis" }, { "SMS", "Sega Master System" }, { "PSX", "Sony PlayStation" }, - { "LYNX", "Atari Lynx" }, + { "Lynx", "Atari Lynx" }, }; public string TargetSystem = null; diff --git a/BizHawk.Emulation.Common/Database/Database.cs b/BizHawk.Emulation.Common/Database/Database.cs index fb4b891bf3..4454c4e055 100644 --- a/BizHawk.Emulation.Common/Database/Database.cs +++ b/BizHawk.Emulation.Common/Database/Database.cs @@ -333,7 +333,7 @@ namespace BizHawk.Emulation.Common break; case ".LNX": - game.System = "LYNX"; + game.System = "Lynx"; break; } diff --git a/BizHawk.Emulation.Common/Database/FirmwareDatabase.cs b/BizHawk.Emulation.Common/Database/FirmwareDatabase.cs index f18b4ab0d6..5c9af6c67d 100644 --- a/BizHawk.Emulation.Common/Database/FirmwareDatabase.cs +++ b/BizHawk.Emulation.Common/Database/FirmwareDatabase.cs @@ -39,7 +39,7 @@ namespace BizHawk.Emulation.Common Option("GBA", "Bios", GBA_JDebug); } - FirmwareAndOption("E4ED47FAE31693E016B081C6BDA48DA5B70D7CCB", 512, "LYNX", "Boot", "lynxboot.img", "Boot Rom"); + FirmwareAndOption("E4ED47FAE31693E016B081C6BDA48DA5B70D7CCB", 512, "Lynx", "Boot", "lynxboot.img", "Boot Rom"); //FirmwareAndOption("24F67BDEA115A2C847C8813A262502EE1607B7DF", "NDS", "Bios_Arm7", "biosnds7.rom", "ARM7 Bios"); diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.cs b/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.cs index c1f578fea4..b2e122975e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.cs @@ -16,12 +16,12 @@ namespace BizHawk.Emulation.Cores.Atari.Lynx { IntPtr Core; - [CoreConstructor("LYNX")] + [CoreConstructor("Lynx")] public Lynx(byte[] file, GameInfo game, CoreComm comm) { CoreComm = comm; - byte[] bios = CoreComm.CoreFileProvider.GetFirmware("LYNX", "Boot", true, "Boot rom is required"); + byte[] bios = CoreComm.CoreFileProvider.GetFirmware("Lynx", "Boot", true, "Boot rom is required"); if (bios.Length != 512) throw new MissingFirmwareException("Lynx Bootrom must be 512 bytes!"); @@ -45,7 +45,7 @@ namespace BizHawk.Emulation.Cores.Atari.Lynx if (bs93 == "BS93") throw new InvalidOperationException("Unsupported BS93 Lynx ram image"); - if (header == "LYNX" && (ver & 255) == 1) + if (header == "Lynx" && (ver & 255) == 1) { Console.WriteLine("Processing Handy-Lynx header"); pagesize0 = p0; @@ -138,7 +138,7 @@ namespace BizHawk.Emulation.Cores.Atari.Lynx public int LagCount { get; set; } public bool IsLagFrame { get; private set; } - public string SystemId { get { return "LYNX"; } } + public string SystemId { get { return "Lynx"; } } public bool DeterministicEmulation { get { return true; } }