summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/taito_helper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/taito_helper.cpp')
-rw-r--r--src/mame/video/taito_helper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/taito_helper.cpp b/src/mame/video/taito_helper.cpp
index 58c2b3a666c..6785ce576be 100644
--- a/src/mame/video/taito_helper.cpp
+++ b/src/mame/video/taito_helper.cpp
@@ -9,8 +9,8 @@
void taitoic_drawscanline( bitmap_ind16 &bitmap, const rectangle &cliprect, int x, int y,
const u16 *src, bool transparent, u32 orient, bitmap_ind8 &priority, u8 pri, u8 primask)
{
- u16 *dsti = &bitmap.pix16(y, x);
- u8 *dstp = &priority.pix8(y, x);
+ u16 *dsti = &bitmap.pix(y, x);
+ u8 *dstp = &priority.pix(y, x);
int length = cliprect.width();
src += cliprect.min_x;