summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/hd44102.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/hd44102.cpp')
-rw-r--r--src/devices/video/hd44102.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/hd44102.cpp b/src/devices/video/hd44102.cpp
index 3b05f1e5e69..1bb8cbf5a4d 100644
--- a/src/devices/video/hd44102.cpp
+++ b/src/devices/video/hd44102.cpp
@@ -268,7 +268,7 @@ uint32_t hd44102_device::screen_update(screen_device &screen, bitmap_ind16 &bitm
{
int color = (m_status & STATUS_DISPLAY_OFF) ? 0 : BIT(data, z % 8);
- bitmap.pix16(sy, sx) = color;
+ bitmap.pix(sy, sx) = color;
}
z++;