summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev/printer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/imagedev/printer.h')
-rw-r--r--src/devices/imagedev/printer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/imagedev/printer.h b/src/devices/imagedev/printer.h
index 84f3efb4002..509ecc43ef2 100644
--- a/src/devices/imagedev/printer.h
+++ b/src/devices/imagedev/printer.h
@@ -35,13 +35,13 @@ public:
virtual void call_unload() override;
// image device
- virtual iodevice_t image_type() const noexcept override { return IO_PRINTER; }
virtual bool is_readable() const noexcept override { return false; }
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 "prn"; }
+ virtual const char *image_type_name() const noexcept override { return "printout"; }
+ virtual const char *image_brief_type_name() const noexcept override { return "prin"; }
// specific implementation