summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vic20/videopak.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vic20/videopak.cpp')
-rw-r--r--src/devices/bus/vic20/videopak.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/vic20/videopak.cpp b/src/devices/bus/vic20/videopak.cpp
index 187224721be..1f2b3c35431 100644
--- a/src/devices/bus/vic20/videopak.cpp
+++ b/src/devices/bus/vic20/videopak.cpp
@@ -77,7 +77,7 @@ MC6845_UPDATE_ROW( vic20_video_pak_device::crtc_update_row )
int x = (column * 8) + bit;
int color = BIT(data, 7) && de;
- bitmap.pix32(vbp + y, hbp + x) = pen[color];
+ bitmap.pix(vbp + y, hbp + x) = pen[color];
data <<= 1;
}