summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gluck2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gluck2.c')
-rw-r--r--src/mame/drivers/gluck2.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/gluck2.c b/src/mame/drivers/gluck2.c
index b5421cc8859..06b0ee36794 100644
--- a/src/mame/drivers/gluck2.c
+++ b/src/mame/drivers/gluck2.c
@@ -211,20 +211,20 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
-
+
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_colorram;
-
+
tilemap_t *m_bg_tilemap;
-
+
DECLARE_WRITE8_MEMBER(videoram_w);
DECLARE_WRITE8_MEMBER(colorram_w);
DECLARE_WRITE8_MEMBER(counters_w);
TILE_GET_INFO_MEMBER(get_tile_info);
-
+
virtual void video_start();
DECLARE_PALETTE_INIT(gluck2);
-
+
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
};