From 96ac5d1122cbaa01b2d47034bf147b41cdbf0319 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Fri, 14 Apr 2017 21:44:15 -0400 Subject: [PATCH] GPGX remove an exception for debugging The core can handle this case just fine so there doesn't appear to be a need for it anyway --- .../Consoles/Sega/gpgx/GPGX.IMemoryDomains.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IMemoryDomains.cs index 7bb4b11188..ca7b144a06 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IMemoryDomains.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IMemoryDomains.cs @@ -53,15 +53,15 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx delegate (long addr) { var a = (uint)addr; - if (a >= 0x1000000) - throw new ArgumentOutOfRangeException(); + //if (a >= 0x1000000) + //throw new ArgumentOutOfRangeException(); return LibGPGX.gpgx_peek_m68k_bus(a); }, delegate (long addr, byte val) { var a = (uint)addr; - if (a >= 0x1000000) - throw new ArgumentOutOfRangeException(); + //if (a >= 0x1000000) + //throw new ArgumentOutOfRangeException(); LibGPGX.gpgx_write_m68k_bus(a, val); }, 2);