summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/applix_dsk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/applix_dsk.cpp')
-rw-r--r--src/lib/formats/applix_dsk.cpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/lib/formats/applix_dsk.cpp b/src/lib/formats/applix_dsk.cpp
index 59a0d4c06f5..378ffae346b 100644
--- a/src/lib/formats/applix_dsk.cpp
+++ b/src/lib/formats/applix_dsk.cpp
@@ -2,31 +2,29 @@
// copyright-holders:Robbbert
/*********************************************************************
- formats/applix_dsk.c
+ formats/applix_dsk.cpp
Applix disk image format
*********************************************************************/
-#include <assert.h>
-
#include "formats/applix_dsk.h"
applix_format::applix_format() : wd177x_format(formats)
{
}
-const char *applix_format::name() const
+const char *applix_format::name() const noexcept
{
return "applix";
}
-const char *applix_format::description() const
+const char *applix_format::description() const noexcept
{
return "Applix disk image";
}
-const char *applix_format::extensions() const
+const char *applix_format::extensions() const noexcept
{
return "raw";
}
@@ -40,4 +38,4 @@ const applix_format::format applix_format::formats[] = {
{}
};
-const floppy_format_type FLOPPY_APPLIX_FORMAT = &floppy_image_format_creator<applix_format>;
+const applix_format FLOPPY_APPLIX_FORMAT;