summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/m58.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/m58.h')
-rw-r--r--src/mame/includes/m58.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/m58.h b/src/mame/includes/m58.h
index 08e33088ff9..2dfcfba406f 100644
--- a/src/mame/includes/m58.h
+++ b/src/mame/includes/m58.h
@@ -13,13 +13,13 @@ public:
m_scroll_x_high(*this, "scroll_x_high"),
m_scroll_y_low(*this, "scroll_y_low"),
m_score_panel_disabled(*this, "score_disable") { }
-
+
/* devices */
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
-
+
/* memory pointers */
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_spriteram;
@@ -31,18 +31,18 @@ public:
/* video-related */
tilemap_t* m_bg_tilemap;
bitmap_ind16 m_scroll_panel_bitmap;
-
+
DECLARE_WRITE8_MEMBER(videoram_w);
DECLARE_WRITE8_MEMBER(scroll_panel_w);
DECLARE_WRITE8_MEMBER(flipscreen_w);
-
+
DECLARE_DRIVER_INIT(yard85);
virtual void video_start();
DECLARE_PALETTE_INIT(m58);
-
+
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILEMAP_MAPPER_MEMBER(tilemap_scan_rows);
-
+
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );
void draw_panel( bitmap_ind16 &bitmap, const rectangle &cliprect );