mirror of
https://github.com/holub/mame
synced 2025-07-04 01:18:59 +03:00
namcos21_dsp_c67.cpp: Mask offset for point24 ROM accesses (blind fix for MT 8743)
This commit is contained in:
parent
f101f937dd
commit
c76a5beeb9
@ -404,7 +404,7 @@ void namcos21_dsp_c67_device::dspram16_w(offs_t offset, uint16_t data, uint16_t
|
||||
|
||||
int32_t namcos21_dsp_c67_device::read_pointrom_data(unsigned offset)
|
||||
{
|
||||
return m_ptrom24[offset];
|
||||
return m_ptrom24[offset & 0xfffff];
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user