summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/m10.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/m10.cpp')
-rw-r--r--src/mame/video/m10.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/m10.cpp b/src/mame/video/m10.cpp
index 3a0a233c961..5cb29654aca 100644
--- a/src/mame/video/m10.cpp
+++ b/src/mame/video/m10.cpp
@@ -86,12 +86,12 @@ void m10_state::m15_chargen_w(offs_t offset, uint8_t data)
}
-inline void m10_state::plot_pixel_m10( bitmap_ind16 &bm, int x, int y, int col )
+inline void m10_state::plot_pixel_m10(bitmap_ind16 &bm, int x, int y, int col)
{
if (!m_flip)
- bm.pix16(y, x) = col;
+ bm.pix(y, x) = col;
else
- bm.pix16((IREMM10_VBSTART - 1) - (y - IREMM10_VBEND),
+ bm.pix((IREMM10_VBSTART - 1) - (y - IREMM10_VBEND),
(IREMM10_HBSTART - 1) - (x - IREMM10_HBEND)) = col; // only when flip_screen(?)
}