summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/galpanic_ms.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/galpanic_ms.cpp')
-rw-r--r--src/mame/drivers/galpanic_ms.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/galpanic_ms.cpp b/src/mame/drivers/galpanic_ms.cpp
index d74847c5b40..68043aea23d 100644
--- a/src/mame/drivers/galpanic_ms.cpp
+++ b/src/mame/drivers/galpanic_ms.cpp
@@ -61,12 +61,12 @@ private:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
// comad
- READ16_MEMBER(comad_timer_r);
+ uint16_t comad_timer_r();
void newquiz_map(address_map &map);
};
-READ16_MEMBER(galspanic_ms_state::comad_timer_r)
+uint16_t galspanic_ms_state::comad_timer_r()
{
return (m_screen->vpos() & 0x07) << 8;
}