diff options
Diffstat (limited to 'src/lib/formats/atom_dsk.h')
-rw-r--r-- | src/lib/formats/atom_dsk.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/formats/atom_dsk.h b/src/lib/formats/atom_dsk.h index ef9cfa28d85..c9db6aa1434 100644 --- a/src/lib/formats/atom_dsk.h +++ b/src/lib/formats/atom_dsk.h @@ -13,14 +13,14 @@ class atom_format : public wd177x_format public: atom_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_ATOM_FORMAT; +extern const atom_format FLOPPY_ATOM_FORMAT; #endif // MAME_FORMATS_ATOM_DSK_H |