summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/xevious.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/xevious.cpp')
-rw-r--r--src/mame/video/xevious.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/xevious.cpp b/src/mame/video/xevious.cpp
index 2429afd8900..9d336b437f2 100644
--- a/src/mame/video/xevious.cpp
+++ b/src/mame/video/xevious.cpp
@@ -259,7 +259,7 @@ READ8_MEMBER( xevious_state::xevious_bb_r )
/* return BB0 */
dat2 = rom2c[adr_2c];
/* swap bit 6 & 7 */
- dat2 = BITSWAP8(dat2, 6,7,5,4,3,2,1,0);
+ dat2 = bitswap<8>(dat2, 6,7,5,4,3,2,1,0);
/* flip x & y */
if (dat1 & 0x400) dat2 ^= 0x40;
if (dat1 & 0x200) dat2 ^= 0x80;