summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2015-09-29 09:56:28 -0400
committer Scott Stone <tafoid@gmail.com>2015-09-29 09:56:28 -0400
commitdc83952752afd379f7e9bdea250620fe97f3d98b (patch)
tree029581ae344da19569b2f0ad857086a465eac3b5
parent4fba8640f6a5cc70d6e560b7b8b3fd2c317c840c (diff)
a7800 - More accurate representation of the Activision cart hardware for utilized hotspots. Rampage no longer crashes when P1 selects Lizzy. [Mike Saarna]
-rw-r--r--src/devices/bus/a7800/rom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/a7800/rom.c b/src/devices/bus/a7800/rom.c
index fa44813dba4..f642fcf611a 100644
--- a/src/devices/bus/a7800/rom.c
+++ b/src/devices/bus/a7800/rom.c
@@ -469,7 +469,7 @@ READ8_MEMBER(a78_rom_act_device::read_40xx)
WRITE8_MEMBER(a78_rom_act_device::write_40xx)
{
- if (offset >= 0xbf80 && offset <= 0xbf87)
+ if (offset >= 0xbf80 && offset <= 0xbf8f)
m_bank = offset & 7;
}