summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/orion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/orion.cpp')
-rw-r--r--src/mame/machine/orion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/orion.cpp b/src/mame/machine/orion.cpp
index d20a1341fe9..fec6968c788 100644
--- a/src/mame/machine/orion.cpp
+++ b/src/mame/machine/orion.cpp
@@ -27,7 +27,7 @@ READ8_MEMBER(orion_state::orion_romdisk_porta_r)
{
uint16_t addr = (m_romdisk_msb << 8) | m_romdisk_lsb;
if (m_cart->exists() && addr < m_cart->get_rom_size())
- return m_cart->read_rom(space, addr);
+ return m_cart->read_rom(addr);
else
return 0xff;
}