summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/magmax.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/magmax.cpp')
-rw-r--r--src/mame/video/magmax.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/magmax.cpp b/src/mame/video/magmax.cpp
index 1683199b40d..f6279a137f6 100644
--- a/src/mame/video/magmax.cpp
+++ b/src/mame/video/magmax.cpp
@@ -163,10 +163,10 @@ UINT32 magmax_state::screen_update_magmax(screen_device &screen, bitmap_ind16 &b
UINT16 line_data_flip_x[256];
for (i=0; i<256; i++)
line_data_flip_x[i] = line_data[255-i];
- draw_scanline16(bitmap, 0, 255-v, 256, line_data_flip_x, NULL);
+ draw_scanline16(bitmap, 0, 255-v, 256, line_data_flip_x, nullptr);
}
else
- draw_scanline16(bitmap, 0, v, 256, line_data, NULL);
+ draw_scanline16(bitmap, 0, v, 256, line_data, nullptr);
}
}