diff options
Diffstat (limited to 'src/lib/formats/pk8020_dsk.h')
-rw-r--r-- | src/lib/formats/pk8020_dsk.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/formats/pk8020_dsk.h b/src/lib/formats/pk8020_dsk.h index f6a66a4f797..dcbd71ff308 100644 --- a/src/lib/formats/pk8020_dsk.h +++ b/src/lib/formats/pk8020_dsk.h @@ -1,4 +1,4 @@ -// license:GPL-2.0+ +// license:BSD-3-Clause // copyright-holders:Dirk Best /*************************************************************************** @@ -19,14 +19,14 @@ class pk8020_format : public wd177x_format public: pk8020_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_PK8020_FORMAT; +extern const pk8020_format FLOPPY_PK8020_FORMAT; #endif // MAME_FORMATS_PK8020_DSK_H |