Previous 199869 Revisions Next

r29612 Sunday 13th April, 2014 at 17:19:57 UTC by smf
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
[src/mame/drivers]maygay1b.c

trunk/src/mame/drivers/maygay1b.c
r29611r29612
147147{
148148//  printf("m1_pia_porta_w %02x\n",data);
149149
150      m_vfd->por(!data & 0x40);
151      m_vfd->data(data & 0x10);
152      m_vfd->sclk(data & 0x20);
150   m_vfd->por(!(data & 0x40));
151   m_vfd->data(data & 0x10);
152   m_vfd->sclk(data & 0x20);
153153}
154154
155155WRITE8_MEMBER(maygay1b_state::m1_pia_portb_w)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team