summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/nbmj8900.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/nbmj8900.cpp')
-rw-r--r--src/mame/video/nbmj8900.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/nbmj8900.cpp b/src/mame/video/nbmj8900.cpp
index faf75765d88..f6a1e8deff1 100644
--- a/src/mame/video/nbmj8900.cpp
+++ b/src/mame/video/nbmj8900.cpp
@@ -188,13 +188,13 @@ void nbmj8900_state::vramflip(int vram)
void nbmj8900_state::update_pixel0(int x, int y)
{
uint8_t color = m_videoram0[(y * m_screen_width) + x];
- m_tmpbitmap0.pix16(y, x) = m_palette->pen(color);
+ m_tmpbitmap0.pix(y, x) = m_palette->pen(color);
}
void nbmj8900_state::update_pixel1(int x, int y)
{
uint8_t color = m_videoram1[(y * m_screen_width) + x];
- m_tmpbitmap1.pix16(y, x) = m_palette->pen(color);
+ m_tmpbitmap1.pix(y, x) = m_palette->pen(color);
}
void nbmj8900_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)