diff options
Diffstat (limited to 'src/mame/drivers/eolith16.cpp')
-rw-r--r-- | src/mame/drivers/eolith16.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/eolith16.cpp b/src/mame/drivers/eolith16.cpp index fe33a8b874a..15e5fb7ac8c 100644 --- a/src/mame/drivers/eolith16.cpp +++ b/src/mame/drivers/eolith16.cpp @@ -25,7 +25,7 @@ public: eolith16_state(const machine_config &mconfig, device_type type, const char *tag) : eolith_state(mconfig, type, tag) { } - std::unique_ptr<UINT16[]> m_vram; + std::unique_ptr<uint16_t[]> m_vram; int m_vbuffer; DECLARE_WRITE16_MEMBER(eeprom_w); @@ -37,7 +37,7 @@ public: DECLARE_VIDEO_START(eolith16); DECLARE_PALETTE_INIT(eolith16); - UINT32 screen_update_eolith16(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_eolith16(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); }; @@ -116,12 +116,12 @@ INPUT_PORTS_END VIDEO_START_MEMBER(eolith16_state,eolith16) { - m_vram = std::make_unique<UINT16[]>(0x10000); + m_vram = std::make_unique<uint16_t[]>(0x10000); save_pointer(NAME(m_vram.get()), 0x10000); save_item(NAME(m_vbuffer)); } -UINT32 eolith16_state::screen_update_eolith16(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) +uint32_t eolith16_state::screen_update_eolith16(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) { int x,y,count; int color; |