summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/glass.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/glass.c')
-rw-r--r--src/mame/drivers/glass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/glass.c b/src/mame/drivers/glass.c
index 8a4e6053d65..c3902a76f73 100644
--- a/src/mame/drivers/glass.c
+++ b/src/mame/drivers/glass.c
@@ -412,7 +412,7 @@ DRIVER_INIT_MEMBER(glass_state,glass)
glass_ROM16_split_gfx(machine(), "gfx2", "gfx1", 0x0200000, 0x0200000, 0x0200000, 0x0300000);
/* install custom handler over RAM for protection */
- machine().device("maincpu")->memory().space(AS_PROGRAM)->install_readwrite_handler(0xfec000, 0xfeffff, read16_delegate(FUNC(glass_state::glass_mainram_r), this), write16_delegate(FUNC(glass_state::glass_mainram_w),this));
+ machine().device("maincpu")->memory().space(AS_PROGRAM).install_readwrite_handler(0xfec000, 0xfeffff, read16_delegate(FUNC(glass_state::glass_mainram_r), this), write16_delegate(FUNC(glass_state::glass_mainram_w),this));
}