summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ssozumo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/ssozumo.c')
-rw-r--r--src/mame/video/ssozumo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/ssozumo.c b/src/mame/video/ssozumo.c
index 5060aad1c81..d3dfbb470b1 100644
--- a/src/mame/video/ssozumo.c
+++ b/src/mame/video/ssozumo.c
@@ -36,7 +36,7 @@ void ssozumo_state::palette_init()
bit3 = (color_prom[64] >> 3) & 0x01;
b = 0x0e * bit0 + 0x1f * bit1 + 0x43 * bit2 + 0x8f * bit3;
- palette_set_color(machine(),i,MAKE_RGB(r,g,b));
+ palette_set_color(machine(),i,rgb_t(r,g,b));
color_prom++;
}
}
@@ -95,7 +95,7 @@ WRITE8_MEMBER(ssozumo_state::ssozumo_paletteram_w)
bit3 = (val >> 3) & 0x01;
b = 0x0e * bit0 + 0x1f * bit1 + 0x43 * bit2 + 0x8f * bit3;
- palette_set_color(machine(), offs2 + 64, MAKE_RGB(r, g, b));
+ palette_set_color(machine(), offs2 + 64, rgb_t(r, g, b));
}
WRITE8_MEMBER(ssozumo_state::ssozumo_scroll_w)