summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/lbeach.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/lbeach.cpp')
-rw-r--r--src/mame/drivers/lbeach.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/lbeach.cpp b/src/mame/drivers/lbeach.cpp
index 10a501d8d70..a493b8b9b71 100644
--- a/src/mame/drivers/lbeach.cpp
+++ b/src/mame/drivers/lbeach.cpp
@@ -50,6 +50,9 @@ public:
m_palette(*this, "palette")
{ }
+ void lbeach(machine_config &config);
+
+private:
/* devices / memory pointers */
required_device<cpu_device> m_maincpu;
required_shared_ptr<uint8_t> m_bg_vram;
@@ -80,7 +83,6 @@ public:
virtual void video_start() override;
DECLARE_PALETTE_INIT(lbeach);
uint32_t screen_update_lbeach(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void lbeach(machine_config &config);
void lbeach_map(address_map &map);
};