summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/thunderx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/thunderx.h')
-rw-r--r--src/mame/includes/thunderx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/thunderx.h b/src/mame/includes/thunderx.h
index 2ea60729e11..e9ee6df35c1 100644
--- a/src/mame/includes/thunderx.h
+++ b/src/mame/includes/thunderx.h
@@ -43,11 +43,11 @@ public:
/* memory */
required_memory_bank m_rombank;
- optional_shared_ptr<UINT8> m_pmcram;
+ optional_shared_ptr<uint8_t> m_pmcram;
/* misc */
int m_priority;
- UINT8 m_1f98_latch;
+ uint8_t m_1f98_latch;
DECLARE_WRITE8_MEMBER(scontra_bankswitch_w);
DECLARE_WRITE8_MEMBER(thunderx_videobank_w);
@@ -66,7 +66,7 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
- 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);
INTERRUPT_GEN_MEMBER(vblank_interrupt);
void run_collisions( int s0, int e0, int s1, int e1, int cm, int hm );
void calculate_collisions( );