summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/dpb_combiner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/dpb_combiner.cpp')
-rw-r--r--src/mame/video/dpb_combiner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/dpb_combiner.cpp b/src/mame/video/dpb_combiner.cpp
index 29819661e35..48440eeec02 100644
--- a/src/mame/video/dpb_combiner.cpp
+++ b/src/mame/video/dpb_combiner.cpp
@@ -206,7 +206,7 @@ void dpb7000_combiner_card_device::fsck_tick()
{
for (int y = cliprect.min_y; y <= cliprect.max_y; y++)
{
- uint32_t *dest = &bitmap.pix32(y, cliprect.min_x);
+ uint32_t *dest = &bitmap.pix(y, cliprect.min_x);
for (int x = cliprect.min_x; x <= cliprect.max_x && x < 256; x++)
{
*dest++ = 0xff000000 | (m_lum_out << 16) | (m_lum_out << 8) | m_lum_out;