diff options
Diffstat (limited to 'src/mame/drivers/studio2.cpp')
-rw-r--r-- | src/mame/drivers/studio2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/studio2.cpp b/src/mame/drivers/studio2.cpp index 3365c1005a2..44278fe4780 100644 --- a/src/mame/drivers/studio2.cpp +++ b/src/mame/drivers/studio2.cpp @@ -518,7 +518,7 @@ void visicom_state::dma_w(offs_t offset, uint8_t data) for (int x = 0; x < 8; x++) { int color = (BIT(color1, 7) << 1) | BIT(color0, 7); - m_vdc->m_bitmap.pix32(y, sx + x) = VISICOM_PALETTE[color]; + m_vdc->m_bitmap.pix(y, sx + x) = VISICOM_PALETTE[color]; color0 <<= 1; color1 <<= 1; } |