summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/rz1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/rz1.cpp')
-rw-r--r--src/mame/drivers/rz1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/rz1.cpp b/src/mame/drivers/rz1.cpp
index c90929eca84..2bd594b568b 100644
--- a/src/mame/drivers/rz1.cpp
+++ b/src/mame/drivers/rz1.cpp
@@ -206,7 +206,7 @@ HD44780_PIXEL_UPDATE( rz1_state::lcd_pixel_update )
return;
if (line < 1 && pos < 16)
- bitmap.pix16(1 + y, 1 + line*8*6 + pos*6 + x) = state ? 1 : 2;
+ bitmap.pix(1 + y, 1 + line*8*6 + pos*6 + x) = state ? 1 : 2;
}
uint8_t rz1_state::upd934g_c_data_r(offs_t offset)