summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/idsa.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/idsa.cpp')
-rw-r--r--src/mame/drivers/idsa.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/idsa.cpp b/src/mame/drivers/idsa.cpp
index 11b2bfcac01..d10be5f8c59 100644
--- a/src/mame/drivers/idsa.cpp
+++ b/src/mame/drivers/idsa.cpp
@@ -233,7 +233,7 @@ INPUT_PORTS_END
// This came from pinmame, even though there's no spb640 chip
READ8_MEMBER( idsa_state::portb0_r )
{
- uint16_t data = m_speech->spb640_r(space, offset / 2);
+ uint16_t data = m_speech->spb640_r(offset / 2);
return offset % 2 ? (uint8_t)(data >> 8) : (uint8_t)(data & 0xff);
}