summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/decodmd3.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/decodmd3.c')
-rw-r--r--src/mame/video/decodmd3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/decodmd3.c b/src/mame/video/decodmd3.c
index 5632b08382f..e02ad9f4939 100644
--- a/src/mame/video/decodmd3.c
+++ b/src/mame/video/decodmd3.c
@@ -108,12 +108,12 @@ MC6845_UPDATE_ROW( dmd64_update_row )
for(dot=0;dot<8;dot++)
{
intensity = ((RAM[addr+1] >> (7-dot) & 0x01) << 1) | (RAM[addr+0x801] >> (7-dot) & 0x01);
- bitmap.pix32(y,x+dot) = MAKE_RGB(0x3f*intensity,0x2a*intensity,0x00);
+ bitmap.pix32(y,x+dot) = rgb_t(0x3f*intensity,0x2a*intensity,0x00);
}
for(dot=8;dot<16;dot++)
{
intensity = ((RAM[addr] >> (15-dot) & 0x01) << 1) | (RAM[addr+0x800] >> (15-dot) & 0x01);
- bitmap.pix32(y,x+dot) = MAKE_RGB(0x3f*intensity,0x2a*intensity,0x00);
+ bitmap.pix32(y,x+dot) = rgb_t(0x3f*intensity,0x2a*intensity,0x00);
}
addr+=2;
}