Fix bitwise operation precedence.

This commit is contained in:
Anthony J. Bentley 2017-12-06 22:02:55 -07:00
parent e4f030149b
commit b603029549
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ void SetIRQ14(int source) // 0=USCOMPARE 1=BEACONCOUNT 2=forced
if (BlockBeaconIRQ14 && source == 1)
return;
if (!(IOPORT(W_USCompareCnt)) & 0x0001)
if (!(IOPORT(W_USCompareCnt) & 0x0001))
return;
SetIRQ(14);