summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/cloud9.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/cloud9.c')
-rw-r--r--src/mame/video/cloud9.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/cloud9.c b/src/mame/video/cloud9.c
index 315f6946c0a..4209d0c5153 100644
--- a/src/mame/video/cloud9.c
+++ b/src/mame/video/cloud9.c
@@ -93,7 +93,7 @@ WRITE8_MEMBER(cloud9_state::cloud9_paletteram_w)
bit2 = (~b >> 2) & 0x01;
b = combine_3_weights(m_bweights, bit0, bit1, bit2);
- palette_set_color(machine(), offset & 0x3f, MAKE_RGB(r, g, b));
+ palette_set_color(machine(), offset & 0x3f, rgb_t(r, g, b));
}