diff options
Diffstat (limited to 'src/lib/formats/m5_dsk.h')
-rw-r--r-- | src/lib/formats/m5_dsk.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/formats/m5_dsk.h b/src/lib/formats/m5_dsk.h index f26d96dffc7..1f1430fe082 100644 --- a/src/lib/formats/m5_dsk.h +++ b/src/lib/formats/m5_dsk.h @@ -18,14 +18,14 @@ class m5_format : public upd765_format { public: m5_format(); - virtual const char *name() const override; - virtual const char *description() const override; - virtual const char *extensions() const override; + virtual const char *name() const noexcept override; + virtual const char *description() const noexcept override; + virtual const char *extensions() const noexcept override; private: static const format formats[]; }; -extern const floppy_format_type FLOPPY_M5_FORMAT; +extern const m5_format FLOPPY_M5_FORMAT; #endif // MAME_FORMATS_M5_DSK_H |