Previous 199869 Revisions Next

r29598 Sunday 13th April, 2014 at 12:23:42 UTC by smf
Compile fix for visual studio (nw)

src\mame\drivers\mpu3.c(596) : warning C4806: '&' : unsafe operation: no value of type 'bool' promoted to type 'int' can equal the given constant
[src/mame/drivers]mpu3.c

trunk/src/mame/drivers/mpu3.c
r29597r29598
593593WRITE8_MEMBER(mpu3_state::pia_ic6_porta_w)
594594{
595595   LOG(("%s: IC6 PIA Port A Set to %2x (Alpha)\n", machine().describe_context(),data));
596   m_vfd->por((!data&0x08));
596   m_vfd->por(!(data&0x08));
597597   m_vfd->data((data & 0x20) >> 5);
598598   m_vfd->sclk((data & 0x10) >>4);
599599}

Previous 199869 Revisions Next


© 1997-2024 The MAME Team