summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/ng_memcard.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/ng_memcard.h')
-rw-r--r--src/mame/machine/ng_memcard.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/mame/machine/ng_memcard.h b/src/mame/machine/ng_memcard.h
index 7c507bf5b40..1daae091e94 100644
--- a/src/mame/machine/ng_memcard.h
+++ b/src/mame/machine/ng_memcard.h
@@ -21,15 +21,14 @@ public:
// construction/destruction
ng_memcard_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- virtual iodevice_t image_type() const override { return IO_MEMCARD; }
-
// device_image_interface implementation
- virtual bool is_readable() const override { return true; }
- virtual bool is_writeable() const override { return true; }
- virtual bool is_creatable() const override { return true; }
- virtual bool must_be_loaded() const override { return false; }
- virtual bool is_reset_on_load() const override { return false; }
- virtual const char *file_extensions() const override { return "neo"; }
+ virtual iodevice_t image_type() const noexcept override { return IO_MEMCARD; }
+ 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 "neo"; }
virtual image_init_result call_load() override;
virtual void call_unload() override;