summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/bfm_sc4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/bfm_sc4.cpp')
-rw-r--r--src/mame/drivers/bfm_sc4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/bfm_sc4.cpp b/src/mame/drivers/bfm_sc4.cpp
index 309c3f905d6..df5852c9410 100644
--- a/src/mame/drivers/bfm_sc4.cpp
+++ b/src/mame/drivers/bfm_sc4.cpp
@@ -326,7 +326,7 @@ WRITE8_MEMBER(bfm_sc45_state::mux_output2_w)
UINT16 short_data;
UINT8 byte_data_first_segment;
UINT8 byte_data_second_segment;
- for (int digit = 0; digit < 32; digit += 2)
+ for (int digit = 0; digit < 32; digit += 2)
{
short_data = (m_segment_34_cache[digit + 1] << 8) | m_segment_34_cache[digit];
byte_data_first_segment = (short_data >> 1) & 15;