From ace3fb22077eedae93ee7e99f08c4ab2a803ab78 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Mon, 14 Dec 2020 22:53:57 +0100 Subject: [PATCH] Ahem, let's call that a typo --- src/mame/drivers/rampart.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/rampart.cpp b/src/mame/drivers/rampart.cpp index d7082b927db..cfa292561b9 100644 --- a/src/mame/drivers/rampart.cpp +++ b/src/mame/drivers/rampart.cpp @@ -498,7 +498,7 @@ void rampart_state::machine_start() m_maincpu->space(AS_PROGRAM).install_readwrite_tap(0x140000, 0x147fff, 0x438000, "slapstic", [this](offs_t offset, u16 &data, u16 mem_mask) { m_slapstic->tweak(offset >> 1); }, [this](offs_t offset, u16 &data, u16 mem_mask) { m_slapstic->tweak(offset >> 1); }); - // The slaptic seems to trigger on the whole rom, but that slows things down too much. limit to the range marble madness actually needs + // The slaptic seems to trigger on the whole rom, but that slows things down too much. limit to the range rampart actually needs m_maincpu->space(AS_PROGRAM).install_readwrite_tap(0x040000, 0x041fff, 0x000000, "slapstic", [this](offs_t offset, u16 &data, u16 mem_mask) { m_slapstic->tweak(offset >> 1); }, [this](offs_t offset, u16 &data, u16 mem_mask) { m_slapstic->tweak(offset >> 1); });