mirror of
https://github.com/holub/mame
synced 2025-06-05 20:33:45 +03:00
offtwall.cpp: fixed regression
This commit is contained in:
parent
20be0ade4a
commit
270fe61388
@ -115,7 +115,7 @@ uint16_t offtwall_state::bankrom_r(address_space &space, offs_t offset)
|
||||
return us >> 16;
|
||||
}
|
||||
|
||||
return m_bankrom_base[0x38000 | ((m_bank_offset + offset) & 0x3fff)];
|
||||
return m_bankrom_base[(0x38000 / 2) | ((m_bank_offset + offset) & 0x3fff)];
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user