summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/capbowl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/capbowl.c')
-rw-r--r--src/mame/video/capbowl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/capbowl.c b/src/mame/video/capbowl.c
index 6fe4f6759da..6fd0bd9c68b 100644
--- a/src/mame/video/capbowl.c
+++ b/src/mame/video/capbowl.c
@@ -117,7 +117,7 @@ READ8_MEMBER(capbowl_state::bowlrama_blitter_r)
inline rgb_t capbowl_state::pen_for_pixel( UINT8 *src, UINT8 pix )
{
- return MAKE_RGB(pal4bit(src[(pix << 1) + 0] >> 0),
+ return rgb_t(pal4bit(src[(pix << 1) + 0] >> 0),
pal4bit(src[(pix << 1) + 1] >> 4),
pal4bit(src[(pix << 1) + 1] >> 0));
}