visual studio fix, I'm pretty sure it has a point on this. (nw)

src\mame\drivers\maygay1b.c(150) : warning C4806: '&' : unsafe operation: no value of type 'bool' promoted to type 'int' can equal the given constant
This commit is contained in:
smf- 2014-04-13 17:19:57 +00:00
parent 230e2d6e3a
commit 38e37f2ad4

View File

@ -147,9 +147,9 @@ WRITE8_MEMBER(maygay1b_state::m1_pia_porta_w)
{
// printf("m1_pia_porta_w %02x\n",data);
m_vfd->por(!data & 0x40);
m_vfd->data(data & 0x10);
m_vfd->sclk(data & 0x20);
m_vfd->por(!(data & 0x40));
m_vfd->data(data & 0x10);
m_vfd->sclk(data & 0x20);
}
WRITE8_MEMBER(maygay1b_state::m1_pia_portb_w)