summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/vector06.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/vector06.c')
-rw-r--r--src/mess/machine/vector06.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/vector06.c b/src/mess/machine/vector06.c
index f8e30b96cdb..9c2d2ea81c9 100644
--- a/src/mess/machine/vector06.c
+++ b/src/mess/machine/vector06.c
@@ -60,7 +60,7 @@ WRITE8_MEMBER( vector06_state::vector06_color_set )
UINT8 r = (data & 7) << 5;
UINT8 g = ((data >> 3) & 7) << 5;
UINT8 b = ((data >>6) & 3) << 6;
- palette_set_color( machine(), m_color_index, MAKE_RGB(r,g,b) );
+ palette_set_color( machine(), m_color_index, rgb_t(r,g,b) );
}