summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tgtpanic.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tgtpanic.c')
-rw-r--r--src/mame/drivers/tgtpanic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/tgtpanic.c b/src/mame/drivers/tgtpanic.c
index e83bcdb30aa..53b0ff69aa4 100644
--- a/src/mame/drivers/tgtpanic.c
+++ b/src/mame/drivers/tgtpanic.c
@@ -43,8 +43,8 @@ UINT32 tgtpanic_state::screen_update_tgtpanic(screen_device &screen, bitmap_rgb3
colors[0] = 0;
colors[1] = 0xffffffff;
- colors[2] = MAKE_RGB(pal1bit(m_color >> 2), pal1bit(m_color >> 1), pal1bit(m_color >> 0));
- colors[3] = MAKE_RGB(pal1bit(m_color >> 6), pal1bit(m_color >> 5), pal1bit(m_color >> 4));
+ colors[2] = rgb_t(pal1bit(m_color >> 2), pal1bit(m_color >> 1), pal1bit(m_color >> 0));
+ colors[3] = rgb_t(pal1bit(m_color >> 6), pal1bit(m_color >> 5), pal1bit(m_color >> 4));
for (offs = 0; offs < 0x2000; ++offs)
{