From ef37bfd0c7d45051b8eeab21352394cae33815c0 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sat, 25 Jan 2014 19:48:59 +0000 Subject: [PATCH] nes: misc code cleanup (what was this anyway? leftover of some debug thing?) --- .../Nintendo/NES/Boards/BANDAI_74_161_02_74.cs | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/BANDAI_74_161_02_74.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/BANDAI_74_161_02_74.cs index 71b575a77d..634f6fe5e5 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/BANDAI_74_161_02_74.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/BANDAI_74_161_02_74.cs @@ -142,23 +142,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES public override byte ReadPRG(int addr) { int bank_32k = prg_bank_32k & prg_bank_mask_32k; - - int x = 0; - switch (bank_32k) - { - case 0: - x += 0; - break; - case 1: - x += 1; - break; - case 2: - x += 2; - break; - case 3: - x += 3; - break; - } return ROM[(bank_32k << 15) + addr]; }