summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vic10/exp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vic10/exp.cpp')
-rw-r--r--src/devices/bus/vic10/exp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/vic10/exp.cpp b/src/devices/bus/vic10/exp.cpp
index 9a256951e7f..75237c2e4b5 100644
--- a/src/devices/bus/vic10/exp.cpp
+++ b/src/devices/bus/vic10/exp.cpp
@@ -139,7 +139,7 @@ image_init_result vic10_expansion_slot_device::call_load()
int exrom = 1;
int game = 1;
- if (cbm_crt_read_header(*m_file, &roml_size, &romh_size, &exrom, &game))
+ if (cbm_crt_read_header(image_core_file(), &roml_size, &romh_size, &exrom, &game))
{
uint8_t *roml = nullptr;
uint8_t *romh = nullptr;
@@ -150,7 +150,7 @@ image_init_result vic10_expansion_slot_device::call_load()
if (roml_size) roml = m_card->m_lorom;
if (romh_size) romh = m_card->m_lorom;
- cbm_crt_read_data(*m_file, roml, romh);
+ cbm_crt_read_data(image_core_file(), roml, romh);
}
}
}