From d003be9cda314cd2ac90f0b1c890ac9b84e44f50 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 1 Sep 2014 19:07:05 +0000 Subject: [PATCH] remove some todos, I decided not to do any of them, it is too pedantic to do them --- BizHawk.Client.Common/lua/EmuLuaLibrary.Memory.cs | 2 +- BizHawk.Client.Common/lua/LuaMemoryBase.cs | 2 +- BizHawk.Client.Common/tools/CheatList.cs | 2 +- BizHawk.Client.EmuHawk/tools/Genesis/GenGameGenie.cs | 2 +- BizHawk.Client.EmuHawk/tools/NES/NESGameGenie.cs | 2 +- BizHawk.Client.EmuHawk/tools/PCE/PCECDL.cs | 2 +- BizHawk.Client.EmuHawk/tools/SNES/SNESGameGenie.cs | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Memory.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Memory.cs index 8d03578b1f..c8021371f4 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Memory.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Memory.cs @@ -38,7 +38,7 @@ namespace BizHawk.Client.Common { get { - if (Global.Emulator.HasMemoryDomains()) // IMemoryDomains TODO: don't register memory libraries if core is not IMemoryDomains + if (Global.Emulator.HasMemoryDomains()) { return (Global.Emulator as IMemoryDomains).MemoryDomains[_currentMemoryDomain]; } diff --git a/BizHawk.Client.Common/lua/LuaMemoryBase.cs b/BizHawk.Client.Common/lua/LuaMemoryBase.cs index 6df6e4565f..6877008c84 100644 --- a/BizHawk.Client.Common/lua/LuaMemoryBase.cs +++ b/BizHawk.Client.Common/lua/LuaMemoryBase.cs @@ -22,7 +22,7 @@ namespace BizHawk.Client.Common { get { - if (Global.Emulator.HasMemoryDomains()) // IMemoryDomains TODO: don't register memory libraries if core is not IMemoryDomains + if (Global.Emulator.HasMemoryDomains()) { return (Global.Emulator as IMemoryDomains).MemoryDomains; } diff --git a/BizHawk.Client.Common/tools/CheatList.cs b/BizHawk.Client.Common/tools/CheatList.cs index 105afa3d8e..4a4e61661f 100644 --- a/BizHawk.Client.Common/tools/CheatList.cs +++ b/BizHawk.Client.Common/tools/CheatList.cs @@ -456,7 +456,7 @@ namespace BizHawk.Client.Common compare = int.Parse(vals[2], NumberStyles.HexNumber); } - var domain = (Global.Emulator as IMemoryDomains).MemoryDomains[vals[3]]; // IMemoryDomains TODO + var domain = (Global.Emulator as IMemoryDomains).MemoryDomains[vals[3]]; var enabled = vals[4] == "1"; var name = vals[5]; diff --git a/BizHawk.Client.EmuHawk/tools/Genesis/GenGameGenie.cs b/BizHawk.Client.EmuHawk/tools/Genesis/GenGameGenie.cs index 5b4143c303..5f2894cab7 100644 --- a/BizHawk.Client.EmuHawk/tools/Genesis/GenGameGenie.cs +++ b/BizHawk.Client.EmuHawk/tools/Genesis/GenGameGenie.cs @@ -357,7 +357,7 @@ namespace BizHawk.Client.EmuHawk } var watch = Watch.GenerateWatch( - (Global.Emulator as IMemoryDomains).MemoryDomains["MD CART"], // IMemoryDomains TODO: don't expose this dialog unless the core implements IMemoryDomains + (Global.Emulator as IMemoryDomains).MemoryDomains["MD CART"], address, Watch.WatchSize.Word, Watch.DisplayType.Hex, diff --git a/BizHawk.Client.EmuHawk/tools/NES/NESGameGenie.cs b/BizHawk.Client.EmuHawk/tools/NES/NESGameGenie.cs index 9f2a06eca8..b0d7d887c7 100644 --- a/BizHawk.Client.EmuHawk/tools/NES/NESGameGenie.cs +++ b/BizHawk.Client.EmuHawk/tools/NES/NESGameGenie.cs @@ -231,7 +231,7 @@ namespace BizHawk.Client.EmuHawk if (!string.IsNullOrWhiteSpace(AddressBox.Text) && !string.IsNullOrWhiteSpace(ValueBox.Text)) { var watch = Watch.GenerateWatch( - (Global.Emulator as IMemoryDomains).MemoryDomains["System Bus"], // IMemoryDomains TODO: Don't expose this dialog if core does not implement IMemoryDomains + (Global.Emulator as IMemoryDomains).MemoryDomains["System Bus"], AddressBox.ToRawInt().Value, Watch.WatchSize.Byte, Watch.DisplayType.Hex, diff --git a/BizHawk.Client.EmuHawk/tools/PCE/PCECDL.cs b/BizHawk.Client.EmuHawk/tools/PCE/PCECDL.cs index a408e12efa..a119b7742f 100644 --- a/BizHawk.Client.EmuHawk/tools/PCE/PCECDL.cs +++ b/BizHawk.Client.EmuHawk/tools/PCE/PCECDL.cs @@ -304,7 +304,7 @@ namespace BizHawk.Client.EmuHawk { using (var fs = new FileStream(sfd.FileName, FileMode.Create, FileAccess.Write)) { - _cdl.Disassemble(fs, (Global.Emulator as IMemoryDomains).MemoryDomains); // IMemoryDomains TODO: don't expose this dialog unless core implmements IMemoryDomains + _cdl.Disassemble(fs, (Global.Emulator as IMemoryDomains).MemoryDomains); } } } diff --git a/BizHawk.Client.EmuHawk/tools/SNES/SNESGameGenie.cs b/BizHawk.Client.EmuHawk/tools/SNES/SNESGameGenie.cs index 1c62362a30..446cdc6a20 100644 --- a/BizHawk.Client.EmuHawk/tools/SNES/SNESGameGenie.cs +++ b/BizHawk.Client.EmuHawk/tools/SNES/SNESGameGenie.cs @@ -275,7 +275,7 @@ namespace BizHawk.Client.EmuHawk } var watch = Watch.GenerateWatch( - (Global.Emulator as IMemoryDomains).MemoryDomains["BUS"], // IMemoryDomains TODO: don't expose this dialog if not implementing this interface + (Global.Emulator as IMemoryDomains).MemoryDomains["BUS"], address, Watch.WatchSize.Byte, Watch.DisplayType.Hex,