summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2021-04-01 04:51:45 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2021-04-01 04:51:45 +1100
commit2aec0da4fcc000e892299609e99103a7fb73be36 (patch)
treeb3e6fae87eed39324d9824efadea636245c2ab36
parent1343e5e7d3bdcd5403c382bafc427907b1d9caeb (diff)
trs80m3: removed non-TRS80 formats.
-rw-r--r--src/mame/drivers/trs80m3.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/trs80m3.cpp b/src/mame/drivers/trs80m3.cpp
index 9ec1ae90f05..327904a7d3a 100644
--- a/src/mame/drivers/trs80m3.cpp
+++ b/src/mame/drivers/trs80m3.cpp
@@ -74,6 +74,7 @@ trs80m4p: floppy not working, so machine is useless
#include "screen.h"
#include "speaker.h"
+#include "formats/imd_dsk.h"
#include "formats/trs80_dsk.h"
#include "formats/dmk_dsk.h"
@@ -326,7 +327,7 @@ GFXDECODE_END
void trs80m3_state::floppy_formats(format_registration &fr)
{
- fr.add_mfm_containers();
+ fr.add(FLOPPY_IMD_FORMAT);
fr.add(FLOPPY_TRS80_FORMAT);
fr.add(FLOPPY_DMK_FORMAT);
}