diff options
Diffstat (limited to 'src/lib/formats/ppg_dsk.h')
-rw-r--r-- | src/lib/formats/ppg_dsk.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/formats/ppg_dsk.h b/src/lib/formats/ppg_dsk.h index 2b610133e07..25e010df04d 100644 --- a/src/lib/formats/ppg_dsk.h +++ b/src/lib/formats/ppg_dsk.h @@ -19,9 +19,9 @@ class ppg_format : public wd177x_format public: ppg_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[]; @@ -29,6 +29,6 @@ private: virtual void build_sector_description(const format &d, uint8_t *sectdata, desc_s *sectors, int track, int head) const override; }; -extern const floppy_format_type FLOPPY_PPG_FORMAT; +extern const ppg_format FLOPPY_PPG_FORMAT; #endif // MAME_FORMATS_PPG_DSK_H |