Oops, that was reversed

This commit is contained in:
Lior Halphon 2021-01-31 17:16:59 +02:00
parent ef9671010b
commit d67580c964
1 changed files with 2 additions and 2 deletions

View File

@ -791,7 +791,7 @@ static inline uint16_t effective_channel4_counter(GB_gameboy_t *gb)
break; break;
#if 0 #if 0
case GB_MODEL_CGB_D: case GB_MODEL_CGB_D:
if (effective_counter & ((gb->io_registers[GB_IO_NR43] & 8) ?0x80 : 0x40)) { // This is so weird if (effective_counter & ((gb->io_registers[GB_IO_NR43] & 8) ?0x40 : 0x80)) { // This is so weird
effective_counter |= 0xFF; effective_counter |= 0xFF;
} }
if (effective_counter & 0x100) { if (effective_counter & 0x100) {
@ -812,7 +812,7 @@ static inline uint16_t effective_channel4_counter(GB_gameboy_t *gb)
break; break;
#endif #endif
case GB_MODEL_CGB_E: case GB_MODEL_CGB_E:
if (effective_counter & ((gb->io_registers[GB_IO_NR43] & 8) ?0x80 : 0x40)) { // This is so weird if (effective_counter & ((gb->io_registers[GB_IO_NR43] & 8) ?0x40 : 0x80)) { // This is so weird
effective_counter |= 0xFF; effective_counter |= 0xFF;
} }
if (effective_counter & 0x1000) { if (effective_counter & 0x1000) {