summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/1943.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/1943.c')
-rw-r--r--src/mame/video/1943.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/1943.c b/src/mame/video/1943.c
index b0a35815912..4c86effe40d 100644
--- a/src/mame/video/1943.c
+++ b/src/mame/video/1943.c
@@ -79,7 +79,7 @@ void _1943_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));
}
/* color_prom now points to the beginning of the lookup table */