mirror of
https://github.com/holub/mame
synced 2025-10-09 09:44:40 +03:00
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:
parent
230e2d6e3a
commit
38e37f2ad4
@ -147,9 +147,9 @@ WRITE8_MEMBER(maygay1b_state::m1_pia_porta_w)
|
|||||||
{
|
{
|
||||||
// printf("m1_pia_porta_w %02x\n",data);
|
// printf("m1_pia_porta_w %02x\n",data);
|
||||||
|
|
||||||
m_vfd->por(!data & 0x40);
|
m_vfd->por(!(data & 0x40));
|
||||||
m_vfd->data(data & 0x10);
|
m_vfd->data(data & 0x10);
|
||||||
m_vfd->sclk(data & 0x20);
|
m_vfd->sclk(data & 0x20);
|
||||||
}
|
}
|
||||||
|
|
||||||
WRITE8_MEMBER(maygay1b_state::m1_pia_portb_w)
|
WRITE8_MEMBER(maygay1b_state::m1_pia_portb_w)
|
||||||
|
Loading…
Reference in New Issue
Block a user