diff options
Diffstat (limited to 'src/lib/formats/m5_dsk.cpp')
-rw-r--r-- | src/lib/formats/m5_dsk.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/formats/m5_dsk.cpp b/src/lib/formats/m5_dsk.cpp index ee89499a832..6184bf9fbfb 100644 --- a/src/lib/formats/m5_dsk.cpp +++ b/src/lib/formats/m5_dsk.cpp @@ -2,7 +2,7 @@ // copyright-holders:Olivier Galibert /********************************************************************* - formats/m5_dsk.c + formats/m5_dsk.cpp sord m5 format @@ -14,17 +14,17 @@ m5_format::m5_format() : upd765_format(formats) { } -const char *m5_format::name() const +const char *m5_format::name() const noexcept { return "m5"; } -const char *m5_format::description() const +const char *m5_format::description() const noexcept { return "Sord M5 disk image"; } -const char *m5_format::extensions() const +const char *m5_format::extensions() const noexcept { return "dsk"; } |