summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/taxidriv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/taxidriv.h')
-rw-r--r--src/mame/includes/taxidriv.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/includes/taxidriv.h b/src/mame/includes/taxidriv.h
index 2884053df30..7a73c1cf083 100644
--- a/src/mame/includes/taxidriv.h
+++ b/src/mame/includes/taxidriv.h
@@ -22,15 +22,15 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- required_shared_ptr<UINT8> m_vram0;
- required_shared_ptr<UINT8> m_vram1;
- required_shared_ptr<UINT8> m_vram2;
- required_shared_ptr<UINT8> m_vram3;
- required_shared_ptr<UINT8> m_vram4;
- required_shared_ptr<UINT8> m_vram5;
- required_shared_ptr<UINT8> m_vram6;
- required_shared_ptr<UINT8> m_vram7;
- required_shared_ptr<UINT8> m_scroll;
+ required_shared_ptr<uint8_t> m_vram0;
+ required_shared_ptr<uint8_t> m_vram1;
+ required_shared_ptr<uint8_t> m_vram2;
+ required_shared_ptr<uint8_t> m_vram3;
+ required_shared_ptr<uint8_t> m_vram4;
+ required_shared_ptr<uint8_t> m_vram5;
+ required_shared_ptr<uint8_t> m_vram6;
+ required_shared_ptr<uint8_t> m_vram7;
+ required_shared_ptr<uint8_t> m_scroll;
int m_s1;
int m_s2;
@@ -66,5 +66,5 @@ public:
virtual void machine_start() override;
DECLARE_PALETTE_INIT(taxidriv);
- 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);
};