| Previous | 199869 Revisions | Next |
| r32504 Thursday 2nd October, 2014 at 16:26:47 UTC by smf |
|---|
| (MESS) fix building with official windows tools (nw) Compiling src/emu/bus/chanf/rom.c... src/emu/bus/chanf/rom.c: In member function 'UINT8 chanf_rom_device::common_read_2102(UINT32)': src/emu/bus/chanf/rom.c:144:23: error: suggest parentheses around arithmetic in operand of '|' [-Werror=parentheses] return (m_latch[0] & 0x7f | (m_data0 << 7)); ^ cc1plus.exe: all warnings being treated as errors makefile:932: recipe for target 'obj/windows/emu/bus/chanf/rom.o' failed |
| [src/emu/bus/chanf] | rom.c |
| r32503 | r32504 | |
|---|---|---|
| 141 | 141 | { |
| 142 | 142 | m_addr = m_addr_latch; |
| 143 | 143 | m_data0 = m_ram[m_addr] & 1; |
| 144 | return (m_latch[0] & 0x7f | (m_data0 << 7 | |
| 144 | return (m_latch[0] & 0x7f) | (m_data0 << 7); | |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | return m_latch[0]; |
| Previous | 199869 Revisions | Next |