Thanks clang (nw)

This commit is contained in:
Olivier Galibert 2020-05-06 13:56:08 +02:00
parent 1ab433bb99
commit 2cf1249fa5

View File

@ -235,7 +235,7 @@ u8 mackbd_device::p0_r()
ret &= m_col[0]->read();
// capslock
if(!ioport("MODS")->read() & 0x1)
if(!(ioport("MODS")->read() & 0x1))
ret &= ~0x40;
return ret;