diff options
Diffstat (limited to 'src/mame/video/commando.cpp')
-rw-r--r-- | src/mame/video/commando.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/commando.cpp b/src/mame/video/commando.cpp index 196f87d6282..f5c13948eff 100644 --- a/src/mame/video/commando.cpp +++ b/src/mame/video/commando.cpp @@ -91,7 +91,7 @@ void commando_state::video_start() void commando_state::draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect ) { - UINT8 *buffered_spriteram = m_spriteram->buffer(); + uint8_t *buffered_spriteram = m_spriteram->buffer(); int offs; for (offs = m_spriteram->bytes() - 4; offs >= 0; offs -= 4) @@ -119,7 +119,7 @@ void commando_state::draw_sprites( bitmap_ind16 &bitmap, const rectangle &clipre } } -UINT32 commando_state::screen_update_commando(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) +uint32_t commando_state::screen_update_commando(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) { m_bg_tilemap->draw(screen, bitmap, cliprect, 0, 0); draw_sprites(bitmap, cliprect); |