summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/rallyx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/rallyx.cpp')
-rw-r--r--src/mame/video/rallyx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/rallyx.cpp b/src/mame/video/rallyx.cpp
index 081f07da6f1..740b587b6b8 100644
--- a/src/mame/video/rallyx.cpp
+++ b/src/mame/video/rallyx.cpp
@@ -411,8 +411,8 @@ void rallyx_state::plot_star( bitmap_ind16 &bitmap, const rectangle &cliprect, i
if (flip_screen_y())
y = 255 - y;
- if (m_palette->pen_indirect(bitmap.pix16(y, x) % 0x144) == 0)
- bitmap.pix16(y, x) = STARS_COLOR_BASE + color;
+ if (m_palette->pen_indirect(bitmap.pix(y, x) % 0x144) == 0)
+ bitmap.pix(y, x) = STARS_COLOR_BASE + color;
}
void rallyx_state::draw_stars( bitmap_ind16 &bitmap, const rectangle &cliprect )