diff options
Diffstat (limited to 'src/mame/drivers/mpf1.cpp')
-rw-r--r-- | src/mame/drivers/mpf1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/mpf1.cpp b/src/mame/drivers/mpf1.cpp index ca03e5a893c..44a610eeb74 100644 --- a/src/mame/drivers/mpf1.cpp +++ b/src/mame/drivers/mpf1.cpp @@ -276,7 +276,7 @@ READ8_MEMBER( mpf1_state::ppi_pa_r ) WRITE8_MEMBER( mpf1_state::ppi_pb_w ) { /* swap bits around for the mame 7-segment emulation */ - uint8_t led_data = bitswap<8>(data, 6, 1, 2, 0, 7, 5, 4, 3); + uint8_t led_data = BITSWAP8(data, 6, 1, 2, 0, 7, 5, 4, 3); /* timer to update segments */ m_led_refresh_timer->adjust(attotime::from_usec(70), led_data); |