summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/nt7534.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/nt7534.cpp')
-rw-r--r--src/devices/video/nt7534.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/nt7534.cpp b/src/devices/video/nt7534.cpp
index e777aac55dc..15fd1fb41e5 100644
--- a/src/devices/video/nt7534.cpp
+++ b/src/devices/video/nt7534.cpp
@@ -148,7 +148,7 @@ uint32_t nt7534_device::screen_update(screen_device &screen, bitmap_ind16 &bitma
{
uint8_t py = (y + m_display_start_line - 32) % 65;
uint8_t page = py/8;
- bitmap.pix16(y, x) = BIT(m_ddram[page*132 + px], py%8);
+ bitmap.pix(y, x) = BIT(m_ddram[page*132 + px], py%8);
}
}