summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/progolf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/progolf.c')
-rw-r--r--src/mame/drivers/progolf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/progolf.c b/src/mame/drivers/progolf.c
index 71a20605cbe..f07e21766e1 100644
--- a/src/mame/drivers/progolf.c
+++ b/src/mame/drivers/progolf.c
@@ -417,7 +417,7 @@ void progolf_state::palette_init()
bit2 = (color_prom[i] >> 7) & 0x01;
b = 0x21 * bit0 + 0x47 * bit1 + 0x97 * bit2;
- palette_set_color(machine(),i,MAKE_RGB(r,g,b));
+ palette_set_color(machine(),i,rgb_t(r,g,b));
}
}