mirror of
https://github.com/holub/mame
synced 2025-04-22 00:11:58 +03:00
zephyr: White screen, not green screen (nw)
This commit is contained in:
parent
811cfce435
commit
f28a1419df
@ -66,7 +66,7 @@ u32 zms8085_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, co
|
||||
u8 code = m_mainram[(ch + pos) & 0xfff];
|
||||
u8 data = m_p_chargen[(code & 0x7f) * 16 + y % 10];
|
||||
for (int bit = 7; bit >= 0; bit--)
|
||||
bitmap.pix(y, x++) = BIT(data, bit) ? rgb_t::black() : rgb_t::green();
|
||||
bitmap.pix(y, x++) = BIT(data, bit) ? rgb_t::black() : rgb_t::white();
|
||||
bitmap.pix(y, x++) = rgb_t::black();
|
||||
bitmap.pix(y, x++) = rgb_t::black();
|
||||
bitmap.pix(y, x++) = rgb_t::black();
|
||||
|
Loading…
Reference in New Issue
Block a user