summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/seattle.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-07-26 12:56:13 +1000
committer Vas Crabb <vas@vastheman.com>2020-07-26 12:56:13 +1000
commit60bd3086cc826664a46fc7e703a11e6518482e01 (patch)
tree8c4904cb6ddd01ffae996ab845a3ec446b74518b /src/mame/drivers/seattle.cpp
parentfab7f87398ef533d59fd991718808180cd67019a (diff)
srcclean for 0.223
Diffstat (limited to 'src/mame/drivers/seattle.cpp')
-rw-r--r--src/mame/drivers/seattle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/seattle.cpp b/src/mame/drivers/seattle.cpp
index ebfb8538386..7d0325355e2 100644
--- a/src/mame/drivers/seattle.cpp
+++ b/src/mame/drivers/seattle.cpp
@@ -755,7 +755,7 @@ const uint8_t seattle_state::translate49[7] = { 0x8, 0xc, 0xe, 0xf, 0x3, 0x1, 0x
*************************************/
CUSTOM_INPUT_MEMBER(seattle_state::blitz_49way_r)
{
- return (translate49[m_io_49way_y[1]->read() >> 4] << 12) | (translate49[m_io_49way_x[1]->read() >> 4] << 8) |
+ return (translate49[m_io_49way_y[1]->read() >> 4] << 12) | (translate49[m_io_49way_x[1]->read() >> 4] << 8) |
(translate49[m_io_49way_y[0]->read() >> 4] << 4) | (translate49[m_io_49way_x[0]->read() >> 4] << 0);
}