summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/pastelg.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/pastelg.c')
-rw-r--r--src/mame/video/pastelg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/pastelg.c b/src/mame/video/pastelg.c
index 1e5dff4119c..6788af205b3 100644
--- a/src/mame/video/pastelg.c
+++ b/src/mame/video/pastelg.c
@@ -37,7 +37,7 @@ void pastelg_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++;
}
}