summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hapyfish.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hapyfish.cpp')
-rw-r--r--src/mame/drivers/hapyfish.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/hapyfish.cpp b/src/mame/drivers/hapyfish.cpp
index 9645878c40c..d3a1a55d4a8 100644
--- a/src/mame/drivers/hapyfish.cpp
+++ b/src/mame/drivers/hapyfish.cpp
@@ -30,10 +30,12 @@ public:
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu") { }
+ void hapyfish(machine_config &config);
+
+private:
virtual void video_start() override;
uint32_t screen_update_hapyfish(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
- void hapyfish(machine_config &config);
void hapyfish_map(address_map &map);
};