Fix bool combination.

This commit is contained in:
Thomas Harte 2024-04-22 22:06:09 -04:00
parent f86e9fe086
commit c485097eed
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class MemoryMap {
const auto physical = physical_address(region, address);
assert(physical <= 0xff'ffff);
return shadow_pages_[(physical >> 10) & 127] & shadow_banks_[physical >> 17];
return shadow_pages_[(physical >> 10) & 127] && shadow_banks_[physical >> 17];
}
void write(const Region &region, uint32_t address, uint8_t value) {
if(!region.write) {