summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/meadows.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/meadows.cpp')
-rw-r--r--src/mame/drivers/meadows.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/meadows.cpp b/src/mame/drivers/meadows.cpp
index 5ae137b4ac0..39242ae9745 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 BITSWAP8(val,0,1,2,3,4,5,6,7);
+ return bitswap<8>(val,0,1,2,3,4,5,6,7);
}