summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bwing.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bwing.h')
-rw-r--r--src/mame/includes/bwing.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/includes/bwing.h b/src/mame/includes/bwing.h
index e094da23dc7..5432ef0c883 100644
--- a/src/mame/includes/bwing.h
+++ b/src/mame/includes/bwing.h
@@ -40,12 +40,12 @@ public:
required_device<generic_latch_8_device> m_soundlatch;
/* memory pointers */
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_paletteram;
- required_shared_ptr<UINT8> m_fgscrollram;
- required_shared_ptr<UINT8> m_bgscrollram;
- required_shared_ptr<UINT8> m_gfxram;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_paletteram;
+ required_shared_ptr<uint8_t> m_fgscrollram;
+ required_shared_ptr<uint8_t> m_bgscrollram;
+ required_shared_ptr<uint8_t> m_gfxram;
/* video-related */
tilemap_t *m_charmap;
@@ -85,8 +85,8 @@ public:
virtual void video_start() override;
void bwing_postload();
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void draw_sprites( bitmap_ind16 &bmp, const rectangle &clip, UINT8 *ram, int pri );
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void draw_sprites( bitmap_ind16 &bmp, const rectangle &clip, uint8_t *ram, int pri );
INTERRUPT_GEN_MEMBER(bwp3_interrupt);
};