summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/taitojc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/taitojc.c')
-rw-r--r--src/mame/video/taitojc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/taitojc.c b/src/mame/video/taitojc.c
index ceb9b8cf711..cdb3921e66e 100644
--- a/src/mame/video/taitojc.c
+++ b/src/mame/video/taitojc.c
@@ -46,7 +46,7 @@ WRITE32_MEMBER(taitojc_state::taitojc_palette_w)
g = (color >> 16) & 0xff;
b = (color >> 0) & 0xff;
- palette_set_color(machine(),offset, MAKE_RGB(r, g, b));
+ palette_set_color(machine(),offset, rgb_t(r, g, b));
}
READ32_MEMBER(taitojc_state::taitojc_tile_r)