diff options
Diffstat (limited to 'src/lib/formats/kc85_dsk.h')
-rw-r--r-- | src/lib/formats/kc85_dsk.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/formats/kc85_dsk.h b/src/lib/formats/kc85_dsk.h index b28ab1e6d98..eae13b93f63 100644 --- a/src/lib/formats/kc85_dsk.h +++ b/src/lib/formats/kc85_dsk.h @@ -18,14 +18,14 @@ class kc85_format : public upd765_format { public: kc85_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_KC85_FORMAT; +extern const kc85_format FLOPPY_KC85_FORMAT; #endif // MAME_FORMATS_KC85_DSK_H |