summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/stfight_dev.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/stfight_dev.cpp')
-rw-r--r--src/mame/video/stfight_dev.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/stfight_dev.cpp b/src/mame/video/stfight_dev.cpp
index 40f2f590bd1..6757fd77d9b 100644
--- a/src/mame/video/stfight_dev.cpp
+++ b/src/mame/video/stfight_dev.cpp
@@ -285,8 +285,8 @@ void stfight_video_device::mix_txlayer(screen_device &screen, bitmap_ind16 &bitm
{
for (int y = cliprect.min_y; y <= cliprect.max_y; y++)
{
- uint16_t *dest = &bitmap.pix16(y);
- uint16_t *src = &bitmap2.pix16(y);
+ uint16_t *const dest = &bitmap.pix(y);
+ uint16_t const *const src = &bitmap2.pix(y);
for (int x = cliprect.min_x; x <= cliprect.max_x; x++)
{
if (src[x] == -1)