summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/toobin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/toobin.c')
-rw-r--r--src/mame/video/toobin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/toobin.c b/src/mame/video/toobin.c
index 949de01a99a..d450dd3a50f 100644
--- a/src/mame/video/toobin.c
+++ b/src/mame/video/toobin.c
@@ -110,7 +110,7 @@ WRITE16_MEMBER( toobin_state::toobin_paletteram_w )
if (green) green += 38;
if (blue) blue += 38;
- palette_set_color(machine(), offset & 0x3ff, MAKE_RGB(red, green, blue));
+ palette_set_color(machine(), offset & 0x3ff, rgb_t(red, green, blue));
if (!(newword & 0x8000))
palette_set_pen_contrast(machine(), offset & 0x3ff, m_brightness);
else