mirror of
https://github.com/holub/mame
synced 2025-07-07 19:03:29 +03:00
fix for misleading-indentation warning (nw)
This commit is contained in:
parent
ee9130348c
commit
cfc69a2f88
@ -348,14 +348,14 @@ void hazl1500_state::draw_scanline(uint32_t *pix)
|
||||
m_line_buffer_lsb->rc_w(recycle & 0xf);
|
||||
m_line_buffer_msb->rc_w(recycle >> 4);
|
||||
|
||||
if (recycle == 0)
|
||||
m_maincpu->adjust_icount(-LINE_FETCH_CYCLES);
|
||||
if (recycle == 0)
|
||||
m_maincpu->adjust_icount(-LINE_FETCH_CYCLES);
|
||||
|
||||
for (uint16_t x = 0; x < 80; x++)
|
||||
{
|
||||
uint8_t in = 0;
|
||||
if (!m_vblank)
|
||||
in = m_char_ram[ram_offset + x];
|
||||
if (!m_vblank)
|
||||
in = m_char_ram[ram_offset + x];
|
||||
|
||||
m_line_buffer_lsb->in_w(in & 0xf);
|
||||
m_line_buffer_lsb->cp_w(1);
|
||||
|
Loading…
Reference in New Issue
Block a user