summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/nitedrvr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/nitedrvr.cpp')
-rw-r--r--src/mame/video/nitedrvr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/nitedrvr.cpp b/src/mame/video/nitedrvr.cpp
index d33c8472bfa..0ccd49114c6 100644
--- a/src/mame/video/nitedrvr.cpp
+++ b/src/mame/video/nitedrvr.cpp
@@ -16,7 +16,7 @@ void nitedrvr_state::draw_box(bitmap_ind16 &bitmap, const rectangle &cliprect, i
{
for (int x = bx; x < ex; x++)
if (cliprect.contains(x, y))
- bitmap.pix16(y, x) = 1;
+ bitmap.pix(y, x) = 1;
}
}