summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gladiatr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gladiatr.h')
-rw-r--r--src/mame/includes/gladiatr.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/gladiatr.h b/src/mame/includes/gladiatr.h
index 07097be9b01..1ed36a46947 100644
--- a/src/mame/includes/gladiatr.h
+++ b/src/mame/includes/gladiatr.h
@@ -31,12 +31,12 @@ public:
required_device<palette_device> m_palette;
required_device<generic_latch_8_device> m_soundlatch;
- required_shared_ptr<UINT8> m_nvram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_colorram;
- required_shared_ptr<UINT8> m_textram;
- required_shared_ptr<UINT8> m_generic_paletteram_8;
+ required_shared_ptr<uint8_t> m_nvram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_colorram;
+ required_shared_ptr<uint8_t> m_textram;
+ required_shared_ptr<uint8_t> m_generic_paletteram_8;
int m_data1;
int m_data2;
@@ -101,8 +101,8 @@ public:
DECLARE_MACHINE_RESET(gladiator);
DECLARE_VIDEO_START(gladiatr);
- UINT32 screen_update_ppking(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_gladiatr(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_ppking(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_gladiatr(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
- void swap_block(UINT8 *src1,UINT8 *src2,int len);
+ void swap_block(uint8_t *src1,uint8_t *src2,int len);
};