diff options
Diffstat (limited to 'src/mame/drivers/pp.cpp')
-rw-r--r-- | src/mame/drivers/pp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/pp.cpp b/src/mame/drivers/pp.cpp index 72a4edca6bf..a029c2acb70 100644 --- a/src/mame/drivers/pp.cpp +++ b/src/mame/drivers/pp.cpp @@ -183,11 +183,11 @@ SCN2672_DRAW_CHARACTER_MEMBER(pp_state::display_char) for (int i = 0; i < 7; i++) { - bitmap.pix32(y, x++) = BIT(dots, 7) ? fg : rgb_t::black(); + bitmap.pix(y, x++) = BIT(dots, 7) ? fg : rgb_t::black(); dots <<= 1; } if (!BIT(m_mode, 6)) - bitmap.pix32(y, x++) = BIT(dots, 7) ? fg : rgb_t::black(); + bitmap.pix(y, x++) = BIT(dots, 7) ? fg : rgb_t::black(); } |