From 493d95f4b24aeb200a9ac83c78d77e1d9a91784e Mon Sep 17 00:00:00 2001 From: Curt Coder Date: Wed, 23 Jan 2013 19:52:05 +0000 Subject: [PATCH] (MESS) mm1: Fixed bitmap graphics. (nw) --- src/mess/video/mikromik.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/video/mikromik.c b/src/mess/video/mikromik.c index 7d052e5d208..bf2ced19f45 100644 --- a/src/mess/video/mikromik.c +++ b/src/mess/video/mikromik.c @@ -68,7 +68,7 @@ static UPD7220_DISPLAY_PIXELS( hgdc_display_pixels ) for (int i = 0; i < 8; i++) { - if (BIT(data, i)) bitmap.pix32(y, x + i) = RGB_MONOCHROME_GREEN_HIGHLIGHT[1]; + if (BIT(data, 7-i)) bitmap.pix32(y, x + i) = RGB_MONOCHROME_GREEN_HIGHLIGHT[1]; } }