summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/atarifb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/atarifb.c')
-rw-r--r--src/mame/machine/atarifb.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/atarifb.c b/src/mame/machine/atarifb.c
index 960313fea11..56de399f043 100644
--- a/src/mame/machine/atarifb.c
+++ b/src/mame/machine/atarifb.c
@@ -45,14 +45,14 @@ WRITE8_MEMBER(atarifb_state::abaseb_out1_w)
if (data & 0x80)
{
/* Invert video */
- palette_set_color(machine(), 1, MAKE_RGB(0x00,0x00,0x00)); /* black */
- palette_set_color(machine(), 0, MAKE_RGB(0xff,0xff,0xff)); /* white */
+ palette_set_color(machine(), 1, rgb_t(0x00,0x00,0x00)); /* black */
+ palette_set_color(machine(), 0, rgb_t(0xff,0xff,0xff)); /* white */
}
else
{
/* Regular video */
- palette_set_color(machine(), 0, MAKE_RGB(0x00,0x00,0x00)); /* black */
- palette_set_color(machine(), 1, MAKE_RGB(0xff,0xff,0xff)); /* white */
+ palette_set_color(machine(), 0, rgb_t(0x00,0x00,0x00)); /* black */
+ palette_set_color(machine(), 1, rgb_t(0xff,0xff,0xff)); /* white */
}
}