summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/madalien.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/madalien.cpp')
-rw-r--r--src/mame/video/madalien.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/madalien.cpp b/src/mame/video/madalien.cpp
index 7c1c2154b3c..8303131ca6a 100644
--- a/src/mame/video/madalien.cpp
+++ b/src/mame/video/madalien.cpp
@@ -209,8 +209,8 @@ void madalien_state::draw_headlight(bitmap_ind16 &bitmap, const rectangle &clipr
if ((hx < cliprect.left()) || (hx > cliprect.right()))
continue;
- if (m_headlight_bitmap->pix16(y, x) != 0)
- bitmap.pix16(hy, hx) |= 8;
+ if (m_headlight_bitmap->pix(y, x) != 0)
+ bitmap.pix(hy, hx) |= 8;
}
}
}
@@ -277,7 +277,7 @@ uint32_t madalien_state::screen_update_madalien(screen_device &screen, bitmap_in
for (y = cliprect.top(); y <= cliprect.bottom(); y++)
for (x = min_x; x <= max_x; x++)
if ((x >= cliprect.left()) && (x <= cliprect.right()))
- bitmap.pix16(y, x) |= 8;
+ bitmap.pix(y, x) |= 8;
}
draw_headlight(bitmap, cliprect, flip);