summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/sonson.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/sonson.c')
-rw-r--r--src/mame/video/sonson.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/sonson.c b/src/mame/video/sonson.c
index b2ffb12e9ae..726577e4782 100644
--- a/src/mame/video/sonson.c
+++ b/src/mame/video/sonson.c
@@ -74,7 +74,7 @@ void sonson_state::palette_init()
bit3 = (color_prom[i + 0x00] >> 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 */