summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/coco_vhd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/coco_vhd.h')
-rw-r--r--src/mame/machine/coco_vhd.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/machine/coco_vhd.h b/src/mame/machine/coco_vhd.h
index e523be69c20..78c7ca20b56 100644
--- a/src/mame/machine/coco_vhd.h
+++ b/src/mame/machine/coco_vhd.h
@@ -36,14 +36,13 @@ public:
// image-level overrides
virtual image_init_result call_load() override;
- virtual iodevice_t image_type() const noexcept override { return IO_HARDDISK; }
-
virtual bool is_readable() const noexcept override { return true; }
virtual bool is_writeable() const noexcept override { return true; }
virtual bool is_creatable() const noexcept override { return true; }
- virtual bool must_be_loaded() const noexcept override { return false; }
virtual bool is_reset_on_load() const noexcept override { return false; }
virtual const char *file_extensions() const noexcept override { return "vhd"; }
+ virtual const char *image_type_name() const noexcept override { return "harddisk"; }
+ virtual const char *image_brief_type_name() const noexcept override { return "hard"; }
// specific implementation
uint8_t read(offs_t offset);