mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
whoops. nw.
This commit is contained in:
parent
acae1e5c14
commit
f4ed122a3c
@ -560,7 +560,7 @@ WRITE8_MEMBER(nes_namcot163_device::chr_w)
|
||||
{
|
||||
int bank = offset >> 10;
|
||||
|
||||
if (!(m_latch) & 0x40 && m_chr_bank >= 0xe0)
|
||||
if (!(m_latch & 0x40) && m_chr_bank >= 0xe0)
|
||||
{
|
||||
// CIRAM!!!
|
||||
ui_popup_time(10, "CIRAM mapped to VRAM. Please contact MAMEDevs.");
|
||||
@ -575,7 +575,7 @@ WRITE8_MEMBER(nes_namcot163_device::chr_w)
|
||||
READ8_MEMBER(nes_namcot163_device::chr_r)
|
||||
{
|
||||
int bank = offset >> 10;
|
||||
if (!(m_latch) & 0x40 && m_chr_bank >= 0xe0)
|
||||
if (!(m_latch & 0x40) && m_chr_bank >= 0xe0)
|
||||
{
|
||||
// CIRAM!!!
|
||||
ui_popup_time(10, "CIRAM mapped to VRAM. Please contact MAMEDevs.");
|
||||
|
Loading…
Reference in New Issue
Block a user