summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/nc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/nc.cpp')
-rw-r--r--src/mame/video/nc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/nc.cpp b/src/mame/video/nc.cpp
index 4770ee94f7c..4da4e3d583e 100644
--- a/src/mame/video/nc.cpp
+++ b/src/mame/video/nc.cpp
@@ -69,7 +69,7 @@ uint32_t nc_state::screen_update_nc(screen_device &screen, bitmap_ind16 &bitmap,
for (int b = 0; b < 8; b++)
{
- bitmap.pix16(y, x) = pens[(byte>>7) & 0x01];
+ bitmap.pix(y, x) = pens[(byte>>7) & 0x01];
byte = byte<<1;
x++;
}