summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bankp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bankp.c')
-rw-r--r--src/mame/video/bankp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/bankp.c b/src/mame/video/bankp.c
index 96f49995ab5..e743ce07514 100644
--- a/src/mame/video/bankp.c
+++ b/src/mame/video/bankp.c
@@ -61,7 +61,7 @@ void bankp_state::palette_init()
bit2 = (*color_prom >> 7) & 0x01;
b = 0x21 * bit0 + 0x47 * bit1 + 0x97 * bit2;
- colortable_palette_set_color(machine().colortable, i, MAKE_RGB(r,g,b));
+ colortable_palette_set_color(machine().colortable, i, rgb_t(r,g,b));
color_prom++;
}