summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/hd63484.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/hd63484.cpp')
-rw-r--r--src/devices/video/hd63484.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/hd63484.cpp b/src/devices/video/hd63484.cpp
index e0b08389492..a740aaa93f9 100644
--- a/src/devices/video/hd63484.cpp
+++ b/src/devices/video/hd63484.cpp
@@ -2107,7 +2107,7 @@ void hd63484_device::draw_graphics_line(bitmap_ind16 &bitmap, const rectangle &c
if (!m_display_cb.isnull())
m_display_cb(bitmap, cliprect, y, px, data & mask);
else if (cliprect.contains(px, y))
- bitmap.pix16(y, px) = data & mask;
+ bitmap.pix(y, px) = data & mask;
data >>= bpp;
}