summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/twins.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/twins.cpp')
-rw-r--r--src/mame/drivers/twins.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/twins.cpp b/src/mame/drivers/twins.cpp
index 787cfc93da5..611402fdeea 100644
--- a/src/mame/drivers/twins.cpp
+++ b/src/mame/drivers/twins.cpp
@@ -238,7 +238,7 @@ void twins_state::draw_background(bitmap_ind16 &bitmap, const rectangle &cliprec
{
int count = (y * 320) + cliprect.left();
for(int x = cliprect.left(); x <= cliprect.right(); x++)
- bitmap.pix16(y, x) = videoram[BYTE_XOR_LE(count++)];
+ bitmap.pix(y, x) = videoram[BYTE_XOR_LE(count++)];
}
}
@@ -260,7 +260,7 @@ void spider_state::draw_foreground(bitmap_ind16 &bitmap, const rectangle &clipre
{
u8 pixel = videoram[BYTE_XOR_LE(count++)];
if (pixel)
- bitmap.pix16(y, x) = pixel;
+ bitmap.pix(y, x) = pixel;
}
}
}