summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev
diff options
context:
space:
mode:
author Nigel Barnes <Pernod70@users.noreply.github.com>2016-01-23 21:57:58 +0000
committer Nigel Barnes <Pernod70@users.noreply.github.com>2016-01-23 22:04:06 +0000
commita92e67bf481a6726ed594fdfb7bb6add374dc9eb (patch)
tree7d95f3a4ea05c2e9efdda81007cdc6b8fa908edc /src/devices/imagedev
parent4989dba49896ff3f823ab42b5d7dd62e63c0a8ec (diff)
atom: added softlists for cassettes and floppies
Diffstat (limited to 'src/devices/imagedev')
-rw-r--r--src/devices/imagedev/floppy.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/devices/imagedev/floppy.h b/src/devices/imagedev/floppy.h
index 4d50d74234d..32ec1382801 100644
--- a/src/devices/imagedev/floppy.h
+++ b/src/devices/imagedev/floppy.h
@@ -36,6 +36,9 @@
#define FLOPPY_FORMATS_MEMBER(_member) \
const floppy_format_type _member [] = {
+#define FLOPPY_FORMATS_END0 \
+ , \
+ NULL };
#define FLOPPY_FORMATS_END \
, \
FLOPPY_D88_FORMAT, \
@@ -46,8 +49,8 @@
FLOPPY_MFM_FORMAT, \
FLOPPY_TD0_FORMAT, \
FLOPPY_CQM_FORMAT, \
- FLOPPY_DSK_FORMAT, \
- NULL };
+ FLOPPY_DSK_FORMAT \
+ FLOPPY_FORMATS_END0
class floppy_sound_device;