summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/cdc721.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/cdc721.cpp')
-rw-r--r--src/mame/drivers/cdc721.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/cdc721.cpp b/src/mame/drivers/cdc721.cpp
index 497ba6d5a68..3a50cd3e83e 100644
--- a/src/mame/drivers/cdc721.cpp
+++ b/src/mame/drivers/cdc721.cpp
@@ -25,9 +25,9 @@ public:
public:
virtual void machine_reset() override;
DECLARE_PALETTE_INIT(cdc721);
- const UINT8 *m_p_chargen;
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- required_shared_ptr<UINT8> m_p_videoram;
+ const uint8_t *m_p_chargen;
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ required_shared_ptr<uint8_t> m_p_videoram;
private:
required_device<cpu_device> m_maincpu;
@@ -78,16 +78,16 @@ PALETTE_INIT_MEMBER( cdc721_state, cdc721 )
palette.set_pen_color(2, 0, 128, 0 ); /* Dimmed */
}
-UINT32 cdc721_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t cdc721_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- UINT8 y,ra,chr,gfx;
- UINT16 sy=0,ma=0,x;
+ uint8_t y,ra,chr,gfx;
+ uint16_t sy=0,ma=0,x;
for (y = 0; y < 24; y++)
{
for (ra = 3; ra < 13; ra++)
{
- UINT16 *p = &bitmap.pix16(sy++);
+ uint16_t *p = &bitmap.pix16(sy++);
for (x = 0; x < 160; x+=2)
{