summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/equites.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/equites.cpp')
-rw-r--r--src/mame/video/equites.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/equites.cpp b/src/mame/video/equites.cpp
index 26f64b55e9b..a0193cdebeb 100644
--- a/src/mame/video/equites.cpp
+++ b/src/mame/video/equites.cpp
@@ -350,7 +350,7 @@ void splndrbt_state::splndrbt_draw_sprites(bitmap_ind16 &bitmap, const rectangle
int pen = srcgfx[offset];
if ((transmask & (1 << pen)) == 0)
- bitmap.pix16(y, bx) = paldata[pen];
+ bitmap.pix(y, bx) = paldata[pen];
}
}
}
@@ -383,9 +383,9 @@ void splndrbt_state::splndrbt_copy_bg(bitmap_ind16 &dst_bitmap, const rectangle
if (dst_y >= cliprect.top() && dst_y <= cliprect.bottom())
{
const uint8_t * const romline = &xrom[(dst_y ^ dinvert) << 5];
- const uint16_t * const src_line = &src_bitmap.pix16((src_y + scroll_y) & 0x1ff);
- const uint8_t * const flags_line = &flags_bitmap.pix8((src_y + scroll_y) & 0x1ff);
- uint16_t * const dst_line = &dst_bitmap.pix16(dst_y);
+ const uint16_t * const src_line = &src_bitmap.pix((src_y + scroll_y) & 0x1ff);
+ const uint8_t * const flags_line = &flags_bitmap.pix((src_y + scroll_y) & 0x1ff);
+ uint16_t * const dst_line = &dst_bitmap.pix(dst_y);
int dst_x = 0;
int src_x;