From 2aec0da4fcc000e892299609e99103a7fb73be36 Mon Sep 17 00:00:00 2001 From: Robbbert Date: Thu, 1 Apr 2021 04:51:45 +1100 Subject: [PATCH] trs80m3: removed non-TRS80 formats. --- src/mame/drivers/trs80m3.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); }