summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/igs017.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/igs017.cpp')
-rw-r--r--src/mame/drivers/igs017.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/igs017.cpp b/src/mame/drivers/igs017.cpp
index b8459e7d0f8..bd9c8761b36 100644
--- a/src/mame/drivers/igs017.cpp
+++ b/src/mame/drivers/igs017.cpp
@@ -456,7 +456,7 @@ WRITE8_MEMBER(igs_incdec_device::dec_w)
READ8_MEMBER(igs_incdec_device::val_r)
{
- uint8_t res = (BIT(m_val, 0) << 7) |
+ uint8_t res = (BIT(m_val, 0) << 7) |
(BIT(m_val, 3) << 5) |
(BIT(m_val, 2) << 4) |
(BIT(m_val, 1) << 2) ;