diff options
Diffstat (limited to 'src/lib/formats/abc800_dsk.h')
-rw-r--r-- | src/lib/formats/abc800_dsk.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/formats/abc800_dsk.h b/src/lib/formats/abc800_dsk.h index 90ad8627e8f..f2d95c7c579 100644 --- a/src/lib/formats/abc800_dsk.h +++ b/src/lib/formats/abc800_dsk.h @@ -19,17 +19,17 @@ class abc800_format : public wd177x_format public: abc800_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; protected: - virtual void build_sector_description(const format &d, uint8_t *sectdata, desc_s *sectors, int track, int head) const override; + virtual int get_image_offset(const format &f, int head, int track) const override; private: static const format formats[]; }; -extern const floppy_format_type FLOPPY_ABC800_FORMAT; +extern const abc800_format FLOPPY_ABC800_FORMAT; #endif // MAME_FORMATS_ABC800_DSK_H |