summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/cabal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/cabal.h')
-rw-r--r--src/mame/includes/cabal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/cabal.h b/src/mame/includes/cabal.h
index 6f5a3e71cfb..0642f53afbe 100644
--- a/src/mame/includes/cabal.h
+++ b/src/mame/includes/cabal.h
@@ -31,9 +31,9 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- required_shared_ptr<UINT16> m_spriteram;
- required_shared_ptr<UINT16> m_colorram;
- required_shared_ptr<UINT16> m_videoram;
+ required_shared_ptr<uint16_t> m_spriteram;
+ required_shared_ptr<uint16_t> m_colorram;
+ required_shared_ptr<uint16_t> m_videoram;
tilemap_t *m_background_layer;
tilemap_t *m_text_layer;
@@ -70,6 +70,6 @@ public:
TILE_GET_INFO_MEMBER(get_back_tile_info);
TILE_GET_INFO_MEMBER(get_text_tile_info);
- 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);
};