summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev/flopdrv.h
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2016-07-06 10:38:54 -0400
committer Nathan Woods <npwoods@mess.org>2016-07-07 06:59:35 -0400
commite3cb2c7d78a63f3ce3c4a244e0ba06356f422b95 (patch)
treeb89be5cf6b90eff8fb0729d880dfccce641fe719 /src/devices/imagedev/flopdrv.h
parent6e64e3314ab53e17e74c1e664e23554d495eb85a (diff)
C++-ification of src/lib/util/opresolv.[cpp|h] (moved to util:: namespace, changed option_resolution to be a class, etc)
Diffstat (limited to 'src/devices/imagedev/flopdrv.h')
-rw-r--r--src/devices/imagedev/flopdrv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/imagedev/flopdrv.h b/src/devices/imagedev/flopdrv.h
index de01485ba97..0f337a76933 100644
--- a/src/devices/imagedev/flopdrv.h
+++ b/src/devices/imagedev/flopdrv.h
@@ -101,7 +101,7 @@ public:
virtual bool call_load() override;
virtual bool call_softlist_load(software_list_device &swlist, const char *swname, const rom_entry *start_entry) override { return load_software(swlist, swname, start_entry); }
- virtual bool call_create(int format_type, option_resolution *format_options) override;
+ virtual bool call_create(int format_type, util::option_resolution *format_options) override;
virtual void call_unload() override;
virtual iodevice_t image_type() const override { return IO_FLOPPY; }
@@ -162,7 +162,7 @@ private:
TIMER_CALLBACK_MEMBER(floppy_drive_index_callback);
void floppy_drive_init();
void floppy_drive_index_func();
- int internal_floppy_device_load(int create_format, option_resolution *create_args);
+ int internal_floppy_device_load(int create_format, util::option_resolution *create_args);
TIMER_CALLBACK_MEMBER( set_wpt );
protected: