diff options
author | 2014-05-01 08:21:30 +0000 | |
---|---|---|
committer | 2014-05-01 08:21:30 +0000 | |
commit | ea02fd06a5883097ad970c81219d9d8124002853 (patch) | |
tree | 72eb103193a8bf25fccfafa2b7944f5361330a58 | |
parent | 40e8f47f3fed2a3bc3b27683a66bd7f0657e344b (diff) |
(MESS) fixed loss of cursor on radio86,apogee, mikrosha,partner
-rw-r--r-- | src/mess/drivers/apogee.c | 2 | ||||
-rw-r--r-- | src/mess/drivers/mikrosha.c | 2 | ||||
-rw-r--r-- | src/mess/machine/partner.c | 2 | ||||
-rw-r--r-- | src/mess/machine/radio86.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/drivers/apogee.c b/src/mess/drivers/apogee.c index 9eb9f378fe6..4905c9c4c51 100644 --- a/src/mess/drivers/apogee.c +++ b/src/mess/drivers/apogee.c @@ -184,7 +184,7 @@ I8275_DRAW_CHARACTER_MEMBER(apogee_state::display_pixels) const UINT8 *charmap = m_charmap + (gpa & 1) * 0x400; UINT8 pixels = charmap[(linecount & 7) + (charcode << 3)] ^ 0xff; if(linecount == 8) - return; + pixels = 0; if (vsp) { pixels = 0; } diff --git a/src/mess/drivers/mikrosha.c b/src/mess/drivers/mikrosha.c index a5d9d098617..6dcfd93e2f5 100644 --- a/src/mess/drivers/mikrosha.c +++ b/src/mess/drivers/mikrosha.c @@ -161,7 +161,7 @@ I8275_DRAW_CHARACTER_MEMBER(mikrosha_state::display_pixels) const UINT8 *charmap = m_charmap + (m_mikrosha_font_page & 1) * 0x400; UINT8 pixels = charmap[(linecount & 7) + (charcode << 3)] ^ 0xff; if(linecount == 8) - return; + pixels = 0; if (vsp) { pixels = 0; } diff --git a/src/mess/machine/partner.c b/src/mess/machine/partner.c index 0ee65a4186c..d9f54e666a1 100644 --- a/src/mess/machine/partner.c +++ b/src/mess/machine/partner.c @@ -337,7 +337,7 @@ I8275_DRAW_CHARACTER_MEMBER(partner_state::display_pixels) const UINT8 *charmap = m_charmap + 0x400 * (gpa * 2 + hlgt); UINT8 pixels = charmap[(linecount & 7) + (charcode << 3)] ^ 0xff; if(linecount == 8) - return; + pixels = 0; if (vsp) { pixels = 0; } diff --git a/src/mess/machine/radio86.c b/src/mess/machine/radio86.c index ff0949490b4..21b79efdb94 100644 --- a/src/mess/machine/radio86.c +++ b/src/mess/machine/radio86.c @@ -191,7 +191,7 @@ I8275_DRAW_CHARACTER_MEMBER(radio86_state::display_pixels) const UINT8 *charmap = m_charmap; UINT8 pixels = charmap[(linecount & 7) + (charcode << 3)] ^ 0xff; if(linecount == 8) - return; + pixels = 0; if (vsp) { pixels = 0; } |