| 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 |
| r29611 | r29612 | |
|---|---|---|
| 147 | 147 | { |
| 148 | 148 | // printf("m1_pia_porta_w %02x\n",data); |
| 149 | 149 | |
| 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); | |
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | WRITE8_MEMBER(maygay1b_state::m1_pia_portb_w) |
| Previous | 199869 Revisions | Next |