summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/toypop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/toypop.c')
-rw-r--r--src/mame/video/toypop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/toypop.c b/src/mame/video/toypop.c
index c58d6002445..e4e69b6a420 100644
--- a/src/mame/video/toypop.c
+++ b/src/mame/video/toypop.c
@@ -47,7 +47,7 @@ void toypop_state::palette_init()
bit3 = (color_prom[i+0x200] >> 3) & 0x01;
b = 0x0e * bit0 + 0x1f * bit1 + 0x43 * bit2 + 0x8f * bit3;
- colortable_palette_set_color(machine().colortable, i, MAKE_RGB(r,g,b));
+ colortable_palette_set_color(machine().colortable, i, rgb_t(r,g,b));
}
for (int i = 0;i < 256;i++)