summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/taito_b.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/taito_b.c')
-rw-r--r--src/mame/video/taito_b.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/taito_b.c b/src/mame/video/taito_b.c
index 5d255595876..abecea246c0 100644
--- a/src/mame/video/taito_b.c
+++ b/src/mame/video/taito_b.c
@@ -444,7 +444,7 @@ UINT32 taitob_state::screen_update_realpunc(screen_device &screen, bitmap_rgb32
b = (BIT(srcpix, 3)) | ((srcpix >> 3) & 0x1e);
if (srcpix)
- bitmap.pix32(y, x) = MAKE_RGB(pal5bit(r), pal5bit(g), pal5bit(b));
+ bitmap.pix32(y, x) = rgb_t(pal5bit(r), pal5bit(g), pal5bit(b));
}
addr += stride;
@@ -456,7 +456,7 @@ UINT32 taitob_state::screen_update_realpunc(screen_device &screen, bitmap_rgb32
for (y = 0; y <= cliprect.max_y; y++)
{
for (x = 0; x <= cliprect.max_x; x++)
- bitmap.pix32(y, x) = MAKE_RGB(0x00, 0x00, 0x00);
+ bitmap.pix32(y, x) = rgb_t(0x00, 0x00, 0x00);
}
}