diff options
Diffstat (limited to 'src/mame/drivers/pda600.cpp')
-rw-r--r-- | src/mame/drivers/pda600.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/pda600.cpp b/src/mame/drivers/pda600.cpp index 31d0054973a..3435da028de 100644 --- a/src/mame/drivers/pda600.cpp +++ b/src/mame/drivers/pda600.cpp @@ -132,7 +132,7 @@ uint32_t pda600_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap for (int px=0; px<8; px++) { - bitmap.pix16(y, (x * 8) + px) = BIT(data, 7); + bitmap.pix(y, (x * 8) + px) = BIT(data, 7); data <<= 1; } } |