summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/m10.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/m10.c')
-rw-r--r--src/mame/video/m10.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/m10.c b/src/mame/video/m10.c
index 34d4fde0e8e..e5b3bceb626 100644
--- a/src/mame/video/m10.c
+++ b/src/mame/video/m10.c
@@ -99,7 +99,7 @@ INLINE void plot_pixel_m10( running_machine &machine, bitmap_t &bm, int x, int y
if (!state->m_flip)
bm.pix16(y, x) = col;
else
- bm.pix16((IREMM10_VBSTART - 1) - (y - IREMM10_VBEND) + 6,
+ bm.pix16((IREMM10_VBSTART - 1) - (y - IREMM10_VBEND) + 6,
(IREMM10_HBSTART - 1) - (x - IREMM10_HBEND)) = col; // only when flip_screen(?)
}