diff options
Diffstat (limited to 'src/mame/drivers/taito_l.cpp')
-rw-r--r-- | src/mame/drivers/taito_l.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/taito_l.cpp b/src/mame/drivers/taito_l.cpp index a1a78cf1f21..77c6b120cd9 100644 --- a/src/mame/drivers/taito_l.cpp +++ b/src/mame/drivers/taito_l.cpp @@ -585,8 +585,8 @@ void horshoes_state::horshoes_map(address_map &map) map(0x8000, 0x9fff).ram(); map(0xa000, 0xa003).r(FUNC(horshoes_state::extport_select_and_ym2203_r)).w(m_ymsnd, FUNC(ym2203_device::write)); map(0xa800, 0xa800).select(0x000c).lr8(NAME( - [this](address_space &space, offs_t offset, u8 mem_mask) { - return m_upd4701->read_xy(space, offset >> 2, mem_mask); + [this](offs_t offset) { + return m_upd4701->read_xy(offset >> 2); })); map(0xa802, 0xa802).r(m_upd4701, FUNC(upd4701_device::reset_x_r)); map(0xa803, 0xa803).r(m_upd4701, FUNC(upd4701_device::reset_y_r)); |