summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/pp01.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/pp01.cpp')
-rw-r--r--src/mame/video/pp01.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/pp01.cpp b/src/mame/video/pp01.cpp
index 7afc209d8da..eff118c6b2d 100644
--- a/src/mame/video/pp01.cpp
+++ b/src/mame/video/pp01.cpp
@@ -27,7 +27,7 @@ uint32_t pp01_state::screen_update_pp01(screen_device &screen, bitmap_ind16 &bit
for (int b = 0; b < 8; b++)
{
uint8_t const col = (BIT(code_r, b) << 2) | (BIT(code_g, b) << 1) | (BIT(code_b, b) << 0);
- bitmap.pix16(y, x*8+(7-b)) = col;
+ bitmap.pix(y, x*8+(7-b)) = col;
}
}
}