summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/hd66421.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/hd66421.cpp')
-rw-r--r--src/devices/video/hd66421.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/hd66421.cpp b/src/devices/video/hd66421.cpp
index 22efe3689e8..6be96c81e1f 100644
--- a/src/devices/video/hd66421.cpp
+++ b/src/devices/video/hd66421.cpp
@@ -208,7 +208,7 @@ void hd66421_device::reg_dat_w(uint8_t data)
void hd66421_device::plot_pixel(bitmap_ind16 &bitmap, int x, int y, uint32_t color)
{
- bitmap.pix16(y, x) = (uint16_t)color;
+ bitmap.pix(y, x) = (uint16_t)color;
}
uint32_t hd66421_device::update_screen(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)