summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/quizpani.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/quizpani.h')
-rw-r--r--src/mame/includes/quizpani.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/quizpani.h b/src/mame/includes/quizpani.h
index 0aba284b38c..5c572d5d73a 100644
--- a/src/mame/includes/quizpani.h
+++ b/src/mame/includes/quizpani.h
@@ -13,25 +13,25 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
-
+
required_shared_ptr<UINT16> m_scrollreg;
required_shared_ptr<UINT16> m_bg_videoram;
required_shared_ptr<UINT16> m_txt_videoram;
-
+
tilemap_t *m_bg_tilemap;
tilemap_t *m_txt_tilemap;
int m_bgbank;
int m_txtbank;
-
+
DECLARE_WRITE16_MEMBER(bg_videoram_w);
DECLARE_WRITE16_MEMBER(txt_videoram_w);
DECLARE_WRITE16_MEMBER(tilesbank_w);
-
+
TILEMAP_MAPPER_MEMBER(bg_scan);
TILE_GET_INFO_MEMBER(bg_tile_info);
TILE_GET_INFO_MEMBER(txt_tile_info);
-
+
virtual void video_start();
-
+
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
};