summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/qvt103.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/qvt103.cpp')
-rw-r--r--src/mame/drivers/qvt103.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/qvt103.cpp b/src/mame/drivers/qvt103.cpp
index 553d6f2d8c8..020b2981d50 100644
--- a/src/mame/drivers/qvt103.cpp
+++ b/src/mame/drivers/qvt103.cpp
@@ -52,7 +52,7 @@ u32 qvt103_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, con
uint16_t gfx = m_p_chargen[code << 4 | y];
for (int x = 0; x < 8; x++)
- bitmap.pix32(col*12 + y, row*8 + (7 - x)) = BIT(gfx, x) ? rgb_t::white() : rgb_t::black();
+ bitmap.pix(col*12 + y, row*8 + (7 - x)) = BIT(gfx, x) ? rgb_t::white() : rgb_t::black();
}
}
}