summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/pingpong.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/pingpong.cpp')
-rw-r--r--src/mame/video/pingpong.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/pingpong.cpp b/src/mame/video/pingpong.cpp
index aee2b1a53b0..cced6922ada 100644
--- a/src/mame/video/pingpong.cpp
+++ b/src/mame/video/pingpong.cpp
@@ -77,7 +77,7 @@ PALETTE_INIT_MEMBER(pingpong_state, pingpong)
/* sprites */
for (i = 0x100; i < 0x200; i++)
{
- uint8_t ctabentry = BITSWAP8(color_prom[i],7,6,5,4,0,1,2,3);
+ uint8_t ctabentry = bitswap<8>(color_prom[i],7,6,5,4,0,1,2,3);
palette.set_pen_indirect(i, ctabentry);
}
}