summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/brkthru.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/brkthru.c')
-rw-r--r--src/mame/video/brkthru.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/brkthru.c b/src/mame/video/brkthru.c
index 6d1f9b175f8..7f8154ab448 100644
--- a/src/mame/video/brkthru.c
+++ b/src/mame/video/brkthru.c
@@ -57,7 +57,7 @@ void brkthru_state::palette_init()
bit3 = (color_prom[machine().total_colors()] >> 3) & 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++;
}