summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/pitnrun.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/pitnrun.cpp')
-rw-r--r--src/mame/video/pitnrun.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/pitnrun.cpp b/src/mame/video/pitnrun.cpp
index a9ff5caa885..7ab1327869f 100644
--- a/src/mame/video/pitnrun.cpp
+++ b/src/mame/video/pitnrun.cpp
@@ -104,7 +104,7 @@ void pitnrun_state::spotlights()
int datapix = ROM[128*16*i + x + y*16];
for(int b=0; b<8; b++)
{
- m_tmp_bitmap[i]->pix16(y, x*8 + (7 - b)) = (datapix & 1);
+ m_tmp_bitmap[i]->pix(y, x*8 + (7 - b)) = (datapix & 1);
datapix>>=1;
}
}