diff options
Diffstat (limited to 'src/mame/drivers/meadows.cpp')
-rw-r--r-- | src/mame/drivers/meadows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/meadows.cpp b/src/mame/drivers/meadows.cpp index 39242ae9745..5ae137b4ac0 100644 --- a/src/mame/drivers/meadows.cpp +++ b/src/mame/drivers/meadows.cpp @@ -141,7 +141,7 @@ READ8_MEMBER(meadows_state::hsync_chain_r) { uint8_t val = m_screen->hpos(); - return bitswap<8>(val,0,1,2,3,4,5,6,7); + return BITSWAP8(val,0,1,2,3,4,5,6,7); } |