summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/hp48.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/hp48.cpp')
-rw-r--r--src/mame/video/hp48.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/hp48.cpp b/src/mame/video/hp48.cpp
index 0f224bae73d..572610024ef 100644
--- a/src/mame/video/hp48.cpp
+++ b/src/mame/video/hp48.cpp
@@ -192,7 +192,7 @@ uint32_t hp48_state::screen_update_hp48(screen_device &screen, bitmap_ind16 &bit
acc += m_screens[ i ][ y ][ x+8 ];
}
acc = (acc * 255) / (33 * HP48_NB_SCREENS);
- bitmap.pix16(y, x ) = acc;
+ bitmap.pix(y, x ) = acc;
}
}