summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/dynduke.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/dynduke.h')
-rw-r--r--src/mame/includes/dynduke.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/dynduke.h b/src/mame/includes/dynduke.h
index dc5822346e9..d3558a73388 100644
--- a/src/mame/includes/dynduke.h
+++ b/src/mame/includes/dynduke.h
@@ -24,10 +24,10 @@ public:
required_device<palette_device> m_palette;
required_device<buffered_spriteram16_device> m_spriteram;
- required_shared_ptr<UINT16> m_scroll_ram;
- required_shared_ptr<UINT16> m_videoram;
- required_shared_ptr<UINT16> m_back_data;
- required_shared_ptr<UINT16> m_fore_data;
+ required_shared_ptr<uint16_t> m_scroll_ram;
+ required_shared_ptr<uint16_t> m_videoram;
+ required_shared_ptr<uint16_t> m_back_data;
+ required_shared_ptr<uint16_t> m_fore_data;
tilemap_t *m_bg_layer;
tilemap_t *m_fg_layer;
@@ -53,7 +53,7 @@ public:
virtual void video_start() override;
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap,const rectangle &cliprect,int pri);
void draw_background(bitmap_ind16 &bitmap, const rectangle &cliprect, int pri );