summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/capbowl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/capbowl.h')
-rw-r--r--src/mame/includes/capbowl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/capbowl.h b/src/mame/includes/capbowl.h
index 25c645ef0e6..633e089c7b9 100644
--- a/src/mame/includes/capbowl.h
+++ b/src/mame/includes/capbowl.h
@@ -38,13 +38,13 @@ public:
required_device<generic_latch_8_device> m_soundlatch;
/* memory pointers */
- required_shared_ptr<UINT8> m_rowaddress;
+ required_shared_ptr<uint8_t> m_rowaddress;
/* video-related */
offs_t m_blitter_addr;
/* input-related */
- UINT8 m_last_trackball_val[2];
+ uint8_t m_last_trackball_val[2];
emu_timer *m_update_timer;
@@ -70,8 +70,8 @@ public:
INTERRUPT_GEN_MEMBER(interrupt);
TIMER_CALLBACK_MEMBER(update);
- UINT32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- inline rgb_t pen_for_pixel( UINT8 *src, UINT8 pix );
+ uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ inline rgb_t pen_for_pixel( uint8_t *src, uint8_t pix );
protected:
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;