summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/wecleman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/wecleman.cpp')
-rw-r--r--src/mame/drivers/wecleman.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/wecleman.cpp b/src/mame/drivers/wecleman.cpp
index 1b2b5e46a53..adc29cf0e82 100644
--- a/src/mame/drivers/wecleman.cpp
+++ b/src/mame/drivers/wecleman.cpp
@@ -722,13 +722,13 @@ WRITE8_MEMBER(wecleman_state::hotchase_sound_hs_w)
template<int Chip>
READ8_MEMBER(wecleman_state::hotchase_k007232_r)
{
- return m_k007232[Chip]->read(space, offset ^ 1);
+ return m_k007232[Chip]->read(offset ^ 1);
}
template<int Chip>
WRITE8_MEMBER(wecleman_state::hotchase_k007232_w)
{
- m_k007232[Chip]->write(space, offset ^ 1, data);
+ m_k007232[Chip]->write(offset ^ 1, data);
}
void wecleman_state::hotchase_sound_map(address_map &map)