mirror of
https://github.com/holub/mame
synced 2025-07-05 09:57:47 +03:00
konami/hcastle.cpp: fix missing return. [R. Belmont]
This commit is contained in:
parent
6d8e386281
commit
e734b22b6d
@ -318,6 +318,7 @@ void hcastle_state::workram_w(offs_t offset, uint8_t data)
|
|||||||
if (BIT(m_control, 5))
|
if (BIT(m_control, 5))
|
||||||
{
|
{
|
||||||
m_workram[(offset & 0x7ff) | 0x800] = data;
|
m_workram[(offset & 0x7ff) | 0x800] = data;
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_workram[offset & 0x7ff] = data;
|
m_workram[offset & 0x7ff] = data;
|
||||||
|
Loading…
Reference in New Issue
Block a user