summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/pcw16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/pcw16.cpp')
-rw-r--r--src/mame/video/pcw16.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/pcw16.cpp b/src/mame/video/pcw16.cpp
index 35177c807b8..1fb7c6eb2f5 100644
--- a/src/mame/video/pcw16.cpp
+++ b/src/mame/video/pcw16.cpp
@@ -55,7 +55,7 @@ static constexpr rgb_t pcw16_palette[PCW16_NUM_COLOURS] =
inline void pcw16_state::pcw16_plot_pixel(bitmap_ind16 &bitmap, int x, int y, uint32_t color)
{
- bitmap.pix16(y, x) = (uint16_t)color;
+ bitmap.pix(y, x) = (uint16_t)color;
}
/* Initialise the palette */