diff options
author | 2022-03-25 09:42:02 +0100 | |
---|---|---|
committer | 2022-03-30 15:45:35 +0200 | |
commit | 023486a37ff70f9be765495c07ff3fe0b9c47bc1 (patch) | |
tree | 0a0c39760f06d02dfc28f62df2f80546594b28cf /src/lib/formats/all.cpp | |
parent | 66c0222c690fb6fb0e093fad37d42a68fea66a2f (diff) |
apple2: split the 16 sector format in dos/prodos types
Diffstat (limited to 'src/lib/formats/all.cpp')
-rw-r--r-- | src/lib/formats/all.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/formats/all.cpp b/src/lib/formats/all.cpp index aa3d9ab8d70..a084c87afea 100644 --- a/src/lib/formats/all.cpp +++ b/src/lib/formats/all.cpp @@ -726,7 +726,8 @@ void mame_formats_full_list(mame_formats_enumerator &en) en.add(fs::PRODOS); #endif #ifdef HAS_FORMATS_AP2_DSK - en.add(FLOPPY_A216S_FORMAT); // ap2_dsk.h + en.add(FLOPPY_A216S_DOS_FORMAT); // ap2_dsk.h + en.add(FLOPPY_A216S_PRODOS_FORMAT); // ap2_dsk.h en.add(FLOPPY_RWTS18_FORMAT); // ap2_dsk.h en.add(FLOPPY_EDD_FORMAT); // ap2_dsk.h en.add(FLOPPY_WOZ_FORMAT); // ap2_dsk.h |