summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/zx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/zx.cpp')
-rw-r--r--src/mame/video/zx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/zx.cpp b/src/mame/video/zx.cpp
index d5fd7ef136d..7ce719a7e1c 100644
--- a/src/mame/video/zx.cpp
+++ b/src/mame/video/zx.cpp
@@ -67,7 +67,7 @@ void zx_state::refresh_w(offs_t offset, uint8_t data)
if(m_ula_char_buffer & 0x80)
pixels = ~pixels;
if(x < 384-8 && y < 311) {
- uint16_t *dest = &m_bitmap_render->pix16(y, x);
+ uint16_t *dest = &m_bitmap_render->pix(y, x);
for(int i=0; i<8; i++)
*dest++ |= pixels & (0x80 >> i) ? 1 : 0;
}