summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/dragon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/dragon.cpp')
-rw-r--r--src/mame/machine/dragon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/dragon.cpp b/src/mame/machine/dragon.cpp
index 35f32ef1c31..3499c6553bd 100644
--- a/src/mame/machine/dragon.cpp
+++ b/src/mame/machine/dragon.cpp
@@ -222,7 +222,7 @@ MC6845_UPDATE_ROW(d64plus_state::crtc_update_row)
for (int bit = 0; bit < 8; bit++)
{
int x = (column * 8) + bit;
- bitmap.pix32(y, x) = m_palette->pen(BIT(data, 7) && de);
+ bitmap.pix(y, x) = m_palette->pen(BIT(data, 7) && de);
data <<= 1;
}
}