Minor cosmetic change

This commit is contained in:
Lior Halphon 2022-12-30 17:32:36 +02:00
parent 9e5d3e449b
commit 1247d00cbb
1 changed files with 8 additions and 8 deletions

View File

@ -36,7 +36,8 @@ void GB_apply_cheat(GB_gameboy_t *gb, uint16_t address, uint8_t *value)
if (likely(gb->cheat_count == 0)) return; // Optimization
if (unlikely(!gb->boot_rom_finished)) return;
const GB_cheat_hash_t *hash = gb->cheat_hash[hash_addr(address)];
if (unlikely(hash)) {
if (likely(!hash)) return;
for (unsigned i = 0; i < hash->size; i++) {
GB_cheat_t *cheat = hash->cheats[i];
if (cheat->address == address && cheat->enabled && (!cheat->use_old_value || cheat->old_value == *value)) {
@ -46,7 +47,6 @@ void GB_apply_cheat(GB_gameboy_t *gb, uint16_t address, uint8_t *value)
}
}
}
}
}
bool GB_cheats_enabled(GB_gameboy_t *gb)