summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/fb01.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/fb01.cpp')
-rw-r--r--src/mame/drivers/fb01.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/fb01.cpp b/src/mame/drivers/fb01.cpp
index 35cf5c36c46..e05ba8a9255 100644
--- a/src/mame/drivers/fb01.cpp
+++ b/src/mame/drivers/fb01.cpp
@@ -148,7 +148,7 @@ HD44780_PIXEL_UPDATE(fb01_state::fb01_pixel_update)
{
if ( pos < 8 && line < 2 )
{
- bitmap.pix16(y, line*6*8 + pos*6 + x) = state;
+ bitmap.pix(y, line*6*8 + pos*6 + x) = state;
}
}