summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/tmc600.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tmc600.cpp')
-rw-r--r--src/mame/drivers/tmc600.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/tmc600.cpp b/src/mame/drivers/tmc600.cpp
index 4eddb1c7d01..06b1c116118 100644
--- a/src/mame/drivers/tmc600.cpp
+++ b/src/mame/drivers/tmc600.cpp
@@ -208,7 +208,7 @@ READ_LINE_MEMBER( tmc600_state::ef2_r )
READ_LINE_MEMBER( tmc600_state::ef3_r )
{
- UINT8 data = ~m_key_row[m_keylatch / 8]->read();
+ uint8_t data = ~m_key_row[m_keylatch / 8]->read();
return BIT(data, m_keylatch % 8);
}