diff options
author | 2022-03-25 15:02:54 +0100 | |
---|---|---|
committer | 2022-03-30 15:45:35 +0200 | |
commit | 33bdc1469b3bc84ab1b811329f05c75f4801a7de (patch) | |
tree | 354dd6678a442adc26be3572fac9b27e1d21d1d4 /src/lib/formats/flopimg.cpp | |
parent | 023486a37ff70f9be765495c07ff3fe0b9c47bc1 (diff) |
Constify the floppy image handling interface
Diffstat (limited to 'src/lib/formats/flopimg.cpp')
-rw-r--r-- | src/lib/formats/flopimg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/flopimg.cpp b/src/lib/formats/flopimg.cpp index c7461087447..413c69f4a22 100644 --- a/src/lib/formats/flopimg.cpp +++ b/src/lib/formats/flopimg.cpp @@ -118,7 +118,7 @@ bool floppy_image_format_t::has_variant(const std::vector<uint32_t> &variants, u return false; } -bool floppy_image_format_t::save(util::random_read_write &io, const std::vector<uint32_t> &, floppy_image *) +bool floppy_image_format_t::save(util::random_read_write &io, const std::vector<uint32_t> &, floppy_image *) const { return false; } |