summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ekara/slot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ekara/slot.cpp')
-rw-r--r--src/devices/bus/ekara/slot.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/ekara/slot.cpp b/src/devices/bus/ekara/slot.cpp
index badba2b0ec1..459e14317b6 100644
--- a/src/devices/bus/ekara/slot.cpp
+++ b/src/devices/bus/ekara/slot.cpp
@@ -184,17 +184,17 @@ std::string ekara_cart_slot_device::get_default_card_software(get_default_card_s
{
if (hook.image_file())
{
- const char *slot_string;
- uint32_t len = hook.image_file()->size();
+ uint64_t len;
+ hook.image_file()->length(len); // FIXME: check error return, guard against excessively large files
std::vector<uint8_t> rom(len);
- int type;
- hook.image_file()->read(&rom[0], len);
+ size_t actual;
+ hook.image_file()->read(&rom[0], len, actual); // FIXME: check error return or read returning short
- type = get_cart_type(&rom[0], len);
- slot_string = ekara_get_slot(type);
+ int const type = get_cart_type(&rom[0], len);
+ char const *const slot_string = ekara_get_slot(type);
- printf("type: %s\n", slot_string);
+ //printf("type: %s\n", slot_string);
return std::string(slot_string);
}