Small changes from Fabio (nw)

This commit is contained in:
Miodrag Milanović 2014-10-22 10:25:56 +02:00
parent 97dfb63235
commit 793ddb7b7c
2 changed files with 2 additions and 2 deletions

View File

@ -151,7 +151,7 @@ UINT8 intv_ecs_device::intv_control_r(int hand)
}
break;
case 1: /* disc == _fake_ analog */
case 4: /* disc == _fake_ analog */
x = m_discx[hand]->read();
y = m_discy[hand]->read();

View File

@ -50,7 +50,7 @@ UINT32 nes_state::screen_update_nes(screen_device &screen, bitmap_ind16 &bitmap,
m_last_frame_flip = 1;
}
if (!m_io_disksel->read_safe(1) & 0x01)
if (!(m_io_disksel->read_safe(1) & 0x01))
m_last_frame_flip = 0;
}
return 0;