summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/epos.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
commitddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch)
treea70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/mame/video/epos.cpp
parent333bff8de64dfaeb98134000412796b4fdef970b (diff)
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/mame/video/epos.cpp')
-rw-r--r--src/mame/video/epos.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/epos.cpp b/src/mame/video/epos.cpp
index d0096b4dd45..ccae4353885 100644
--- a/src/mame/video/epos.cpp
+++ b/src/mame/video/epos.cpp
@@ -27,14 +27,14 @@
void epos_state::get_pens( pen_t *pens )
{
offs_t i;
- const UINT8 *prom = memregion("proms")->base();
+ const uint8_t *prom = memregion("proms")->base();
int len = memregion("proms")->bytes();
for (i = 0; i < len; i++)
{
int bit0, bit1, bit2, r, g, b;
- UINT8 data = prom[i];
+ uint8_t data = prom[i];
bit0 = (data >> 7) & 0x01;
bit1 = (data >> 6) & 0x01;
@@ -77,7 +77,7 @@ WRITE8_MEMBER(epos_state::port_1_w)
}
-UINT32 epos_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
+uint32_t epos_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
pen_t pens[0x20];
offs_t offs;
@@ -86,7 +86,7 @@ UINT32 epos_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, co
for (offs = 0; offs < m_videoram.bytes(); offs++)
{
- UINT8 data = m_videoram[offs];
+ uint8_t data = m_videoram[offs];
int x = (offs % 136) * 2;
int y = (offs / 136);