summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/segahang.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/segahang.h')
-rw-r--r--src/mame/includes/segahang.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/segahang.h b/src/mame/includes/segahang.h
index ee17b9e6f27..81a1c0b8e4b 100644
--- a/src/mame/includes/segahang.h
+++ b/src/mame/includes/segahang.h
@@ -68,7 +68,7 @@ public:
DECLARE_DRIVER_INIT(endurob2);
// video updates
- 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);
protected:
// internal types
@@ -102,15 +102,15 @@ protected:
required_device<generic_latch_8_device> m_soundlatch;
// memory pointers
- required_shared_ptr<UINT16> m_workram;
+ required_shared_ptr<uint16_t> m_workram;
// configuration
bool m_sharrier_video;
i8751_sim_delegate m_i8751_vblank_hook;
// internal state
- UINT8 m_adc_select;
+ uint8_t m_adc_select;
optional_ioport_array<4> m_adc_ports;
bool m_shadow;
- optional_shared_ptr<UINT16> m_decrypted_opcodes;
+ optional_shared_ptr<uint16_t> m_decrypted_opcodes;
};