summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/t6a04.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/t6a04.cpp')
-rw-r--r--src/devices/video/t6a04.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/t6a04.cpp b/src/devices/video/t6a04.cpp
index 8b55f8ce153..a5dc8bfa928 100644
--- a/src/devices/video/t6a04.cpp
+++ b/src/devices/video/t6a04.cpp
@@ -110,7 +110,7 @@ uint32_t t6a04_device::screen_update(screen_device &screen, bitmap_ind16 &bitmap
for (int b=7; b>=0; b--)
{
- bitmap.pix16(x&0x3f, y*8+b) = data & 1;
+ bitmap.pix(x&0x3f, y*8+b) = data & 1;
data>>=1;
}
}