summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/music64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/music64.cpp')
-rw-r--r--src/devices/bus/c64/music64.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/music64.cpp b/src/devices/bus/c64/music64.cpp
index 9e31a26c62b..28fa6fc1539 100644
--- a/src/devices/bus/c64/music64.cpp
+++ b/src/devices/bus/c64/music64.cpp
@@ -206,7 +206,7 @@ void c64_music64_cartridge_device::c64_cd_w(offs_t offset, uint8_t data, int sph
int c64_music64_cartridge_device::c64_game_r(offs_t offset, int sphi2, int ba, int rw)
{
- return m_exp->game_r(offset, sphi2, ba, rw, m_slot->hiram());
+ return m_exp->game_r(offset, sphi2, ba, rw, m_slot->loram(), m_slot->hiram());
}
@@ -216,5 +216,5 @@ int c64_music64_cartridge_device::c64_game_r(offs_t offset, int sphi2, int ba, i
int c64_music64_cartridge_device::c64_exrom_r(offs_t offset, int sphi2, int ba, int rw)
{
- return m_exp->exrom_r(offset, sphi2, ba, rw, m_slot->hiram());
+ return m_exp->exrom_r(offset, sphi2, ba, rw, m_slot->loram(), m_slot->hiram());
}