summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/changela.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/changela.cpp')
-rw-r--r--src/mame/drivers/changela.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/changela.cpp b/src/mame/drivers/changela.cpp
index 6e8ab31b15e..ffba7b8f5cf 100644
--- a/src/mame/drivers/changela.cpp
+++ b/src/mame/drivers/changela.cpp
@@ -132,7 +132,7 @@ READ8_MEMBER(changela_state::changela_31_r)
/* If the new value is less than the old value, and it did not wrap around,
or if the new value is greater than the old value, and it did wrap around,
then we are moving LEFT. */
- UINT8 curr_value = ioport("WHEEL")->read();
+ uint8_t curr_value = ioport("WHEEL")->read();
if ((curr_value < m_prev_value_31 && (m_prev_value_31 - curr_value) < 0x80)
|| (curr_value > m_prev_value_31 && (curr_value - m_prev_value_31) > 0x80))