summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/saitek_intchess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/saitek_intchess.cpp')
-rw-r--r--src/mame/drivers/saitek_intchess.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/saitek_intchess.cpp b/src/mame/drivers/saitek_intchess.cpp
index 7a65f4aa0f7..3e7d65bf3f8 100644
--- a/src/mame/drivers/saitek_intchess.cpp
+++ b/src/mame/drivers/saitek_intchess.cpp
@@ -136,7 +136,7 @@ u32 intchess_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, c
// draw chessboard background
for (int y = cliprect.top(); y <= cliprect.bottom(); y++)
for (int x = cliprect.left(); x <= cliprect.right(); x++)
- bitmap.pix16(y, x) = ((x / 20) ^ (y / 16)) << 1 & 2;
+ bitmap.pix(y, x) = ((x / 20) ^ (y / 16)) << 1 & 2;
// draw the sprites
for (int i = 0; i < 64; i++)