summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/system16.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/system16.c')
-rw-r--r--src/mame/video/system16.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/system16.c b/src/mame/video/system16.c
index 518fb6fd70f..e14ee57bb9e 100644
--- a/src/mame/video/system16.c
+++ b/src/mame/video/system16.c
@@ -150,9 +150,9 @@ WRITE16_MEMBER(segas1x_bootleg_state::sys16_paletteram_w)
//gh = combine_6_weights(m_weights[1][1], g0, g1, g2, g3, g4, 1);
//bh = combine_6_weights(m_weights[1][2], b0, b1, b2, b3, b4, 1);
- palette_set_color(machine(), offset, MAKE_RGB(r, g, b) );
+ palette_set_color(machine(), offset, rgb_t(r, g, b) );
- palette_set_color(machine(), offset + machine().total_colors()/2, MAKE_RGB(rs,gs,bs));
+ palette_set_color(machine(), offset + machine().total_colors()/2, rgb_t(rs,gs,bs));
}
}
#endif