summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/baraduke.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/baraduke.c')
-rw-r--r--src/mame/video/baraduke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/baraduke.c b/src/mame/video/baraduke.c
index 28276d14b35..0dc470b8a86 100644
--- a/src/mame/video/baraduke.c
+++ b/src/mame/video/baraduke.c
@@ -44,7 +44,7 @@ void baraduke_state::palette_init()
bit3 = (color_prom[0] >> 7) & 0x01;
b = 0x0e*bit0 + 0x1f*bit1 + 0x43*bit2 + 0x8f*bit3;
- palette_set_color(machine(),i,MAKE_RGB(r,g,b));
+ palette_set_color(machine(),i,rgb_t(r,g,b));
color_prom++;
}
}