mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
MT 06418
This commit is contained in:
parent
07588d3205
commit
44884f14eb
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ inline void _8080bw_state::set_pixel( bitmap_rgb32 &bitmap, uint8_t y, uint8_t x
|
|||
if (y >= MW8080BW_VCOUNTER_START_NO_VBLANK)
|
||||
{
|
||||
if (m_flip_screen)
|
||||
bitmap.pix32(MW8080BW_VBSTART - 1 - (y - MW8080BW_VCOUNTER_START_NO_VBLANK), MW8080BW_HPIXCOUNT - 1 - x) = color;
|
||||
bitmap.pix32(MW8080BW_VBSTART - 1 - (y - MW8080BW_VCOUNTER_START_NO_VBLANK), MW8080BW_HPIXCOUNT - 1 - x) = m_palette->pen_color(color);
|
||||
else
|
||||
bitmap.pix32(y - MW8080BW_VCOUNTER_START_NO_VBLANK, x) = m_palette->pen_color(color);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue