summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/qvt190.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/qvt190.cpp')
-rw-r--r--src/mame/drivers/qvt190.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/qvt190.cpp b/src/mame/drivers/qvt190.cpp
index 0e4778308e0..03cbf1316f5 100644
--- a/src/mame/drivers/qvt190.cpp
+++ b/src/mame/drivers/qvt190.cpp
@@ -64,7 +64,7 @@ MC6845_UPDATE_ROW(qvt190_state::update_row)
gfx = ~gfx;
for (int i = 0; i < 9; i++)
- bitmap.pix32(y, x*9 + (8-i)) = palette[BIT(gfx, i) ? 2 : 0];
+ bitmap.pix(y, x*9 + (8-i)) = palette[BIT(gfx, i) ? 2 : 0];
}
}