summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/sidepckt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/sidepckt.c')
-rw-r--r--src/mame/video/sidepckt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/sidepckt.c b/src/mame/video/sidepckt.c
index 91538ba356a..6e04448829a 100644
--- a/src/mame/video/sidepckt.c
+++ b/src/mame/video/sidepckt.c
@@ -38,7 +38,7 @@ void sidepckt_state::palette_init()
bit3 = (color_prom[i + machine().total_colors()] >> 3) & 0x01;
b = 0x0e * bit0 + 0x1f * bit1 + 0x43 * bit2 + 0x8f * bit3;
- palette_set_color(machine(),i,MAKE_RGB(r,g,b));
+ palette_set_color(machine(),i,rgb_t(r,g,b));
}
}