summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/decodmd1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/decodmd1.cpp')
-rw-r--r--src/mame/video/decodmd1.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/decodmd1.cpp b/src/mame/video/decodmd1.cpp
index 0c9c9835c73..4a84d510380 100644
--- a/src/mame/video/decodmd1.cpp
+++ b/src/mame/video/decodmd1.cpp
@@ -297,14 +297,14 @@ uint32_t decodmd_type1_device::screen_update( screen_device &screen, bitmap_rgb3
else if (data1 & 0x01) // both are the same, so either high intensity or none at all
col = rgb_t(0xff,0xaa,0x00);
else
- col = rgb_t::black;
+ col = rgb_t::black();
bitmap.pix32(y,x+dot) = col;
if((data2 & 0x01) != (data4 & 0x01))
col = rgb_t(0x7f,0x55,0x00);
else if (data2 & 0x01) // both are the same, so either high intensity or none at all
col = rgb_t(0xff,0xaa,0x00);
else
- col = rgb_t::black;
+ col = rgb_t::black();
bitmap.pix32(y,x+dot+1) = col;
data1 >>= 1;
data2 >>= 1;