Fix parentheses around ‘+’ in operand of ‘&’

```
Core/z80_cpu.c: In function ‘add_hl_rr’:
Core/z80_cpu.c:341:31: error: suggest parentheses around ‘+’ in operand of ‘&’ [-Werror=parentheses]
     if ( ((unsigned long) hl) + ((unsigned long) rr) & 0x10000) {
          ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
```
This commit is contained in:
Rob Loach 2018-10-11 22:37:26 -04:00 committed by GitHub
parent 9080a23913
commit b8825127fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ static void add_hl_rr(GB_gameboy_t *gb, uint8_t opcode)
gb->registers[GB_REGISTER_AF] |= GB_HALF_CARRY_FLAG;
}
if ( ((unsigned long) hl) + ((unsigned long) rr) & 0x10000) {
if ( ((unsigned long) hl) + (((unsigned long) rr) & 0x10000)) {
gb->registers[GB_REGISTER_AF] |= GB_CARRY_FLAG;
}
}