diff options
Diffstat (limited to 'src/mame/drivers/z80dev.cpp')
-rw-r--r-- | src/mame/drivers/z80dev.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/z80dev.cpp b/src/mame/drivers/z80dev.cpp index b18d93529a8..ac72881f1d7 100644 --- a/src/mame/drivers/z80dev.cpp +++ b/src/mame/drivers/z80dev.cpp @@ -42,7 +42,7 @@ WRITE8_MEMBER( z80dev_state::display_w ) { // ---- xxxx digit // xxxx ---- ??? - static const UINT8 hex_7seg[] = {0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f, 0x77, 0x7c, 0x39, 0x5e, 0x79, 0x71}; + static const uint8_t hex_7seg[] = {0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f, 0x77, 0x7c, 0x39, 0x5e, 0x79, 0x71}; output().set_digit_value(offset, hex_7seg[data&0x0f]); } |