summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/timelimt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/timelimt.h')
-rw-r--r--src/mame/includes/timelimt.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/includes/timelimt.h b/src/mame/includes/timelimt.h
index 28bab011a61..b6aac719d7d 100644
--- a/src/mame/includes/timelimt.h
+++ b/src/mame/includes/timelimt.h
@@ -24,6 +24,10 @@ public:
void timelimt(machine_config &config);
protected:
+ virtual void machine_start() override;
+ virtual void video_start() override;
+
+private:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -51,8 +55,6 @@ protected:
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILE_GET_INFO_MEMBER(get_fg_tile_info);
- virtual void machine_start() override;
- virtual void video_start() override;
DECLARE_PALETTE_INIT(timelimt);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);