diff options
Diffstat (limited to 'src/mame/drivers/poly880.cpp')
-rw-r--r-- | src/mame/drivers/poly880.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/poly880.cpp b/src/mame/drivers/poly880.cpp index cddaf752477..d3297d0cd15 100644 --- a/src/mame/drivers/poly880.cpp +++ b/src/mame/drivers/poly880.cpp @@ -160,7 +160,7 @@ WRITE8_MEMBER( poly880_state::pio1_pa_w ) */ - m_segment = bitswap<8>(data, 3, 4, 6, 0, 1, 2, 7, 5); + m_segment = BITSWAP8(data, 3, 4, 6, 0, 1, 2, 7, 5); update_display(); } |