summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/dbz.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/dbz.h')
-rw-r--r--src/mame/includes/dbz.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/dbz.h b/src/mame/includes/dbz.h
index e2feddb4275..cdb61cc0cad 100644
--- a/src/mame/includes/dbz.h
+++ b/src/mame/includes/dbz.h
@@ -33,8 +33,8 @@ public:
m_soundlatch(*this, "soundlatch") { }
/* memory pointers */
- required_shared_ptr<UINT16> m_bg1_videoram;
- required_shared_ptr<UINT16> m_bg2_videoram;
+ required_shared_ptr<uint16_t> m_bg1_videoram;
+ required_shared_ptr<uint16_t> m_bg2_videoram;
/* video-related */
tilemap_t *m_bg1_tilemap;
@@ -72,7 +72,7 @@ public:
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
- UINT32 screen_update_dbz(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_dbz(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
TIMER_DEVICE_CALLBACK_MEMBER(dbz_scanline);
K056832_CB_MEMBER(tile_callback);
K053246_CB_MEMBER(sprite_callback);