diff options
Diffstat (limited to 'src/lib/formats/c8280_dsk.h')
-rw-r--r-- | src/lib/formats/c8280_dsk.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/formats/c8280_dsk.h b/src/lib/formats/c8280_dsk.h index c7a9fc2b44e..3afdd275db1 100644 --- a/src/lib/formats/c8280_dsk.h +++ b/src/lib/formats/c8280_dsk.h @@ -19,14 +19,14 @@ class c8280_format : public wd177x_format public: c8280_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_C8280_FORMAT; +extern const c8280_format FLOPPY_C8280_FORMAT; #endif // MAME_FORMATS_C8280_DSK_H |