summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/barata.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/barata.cpp')
-rw-r--r--src/mame/drivers/barata.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/barata.cpp b/src/mame/drivers/barata.cpp
index e4d6a2c2e1a..e70eeeb5ccb 100644
--- a/src/mame/drivers/barata.cpp
+++ b/src/mame/drivers/barata.cpp
@@ -116,9 +116,9 @@ static INPUT_PORTS_START( barata )
INPUT_PORTS_END
/* BCD to Seven Segment Decoder */
-static UINT8 dec_7seg(int data)
+static uint8_t dec_7seg(int data)
{
- UINT8 segment;
+ uint8_t segment;
switch (data)
{
case 0: segment = 0x3f; break;