diff options
| author | 2021-03-04 11:23:49 +0100 | |
|---|---|---|
| committer | 2021-03-04 11:24:17 +0100 | |
| commit | e5d1cec8684a0bed9d760beb6c9cd29f73677b94 (patch) | |
| tree | 7949648292c4fcd8cd0c99ac56395f0e7ca96fba /src/lib/formats/all.cpp | |
| parent | a9f7bede3e4fa79ddd3d66d2fc9d7bdee3195fd8 (diff) | |
formats: Fix missed RC759 format
Diffstat (limited to 'src/lib/formats/all.cpp')
| -rw-r--r-- | src/lib/formats/all.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/formats/all.cpp b/src/lib/formats/all.cpp index 247abd18e50..dbdc3be4d9b 100644 --- a/src/lib/formats/all.cpp +++ b/src/lib/formats/all.cpp @@ -516,6 +516,10 @@ #include "ql_dsk.h" #endif +#ifdef HAS_FORMATS_RC759_DSK +#include "rc759_dsk.h" +#endif + #ifdef HAS_FORMATS_RK_CAS #include "rk_cas.h" #endif @@ -1146,6 +1150,11 @@ void mame_formats_full_list(mame_formats_enumerator &en) en.add(FLOPPY_PYLDIN_FORMAT); // pyldin_dsk.h #endif + en.category("Regnecentralen"); +#ifdef HAS_FORMATS_RC759_DSK + en.add(FLOPPY_RC759_FORMAT); // rc759_dsk.h +#endif + en.category("DEC"); #ifdef HAS_FORMATS_RX50_DSK en.add(FLOPPY_RX50IMG_FORMAT); // rx50_dsk.h |
