From de1c12737a6c41dacd5455e99ca8823d855aea24 Mon Sep 17 00:00:00 2001 From: Luke Usher Date: Mon, 13 Nov 2023 23:38:28 +0000 Subject: [PATCH] mia: remove support for loading ".smd" extension This incorrectly implies that we support the old .smd rom format that used to be standard prior to .bin/.md; This format is an interleaved format designed for the Super Magic Drive copier and ares does not support it To prevent confusing users who may sill have legacy .smd files around, I'm removing the extension from mia. --- mia/medium/mega-drive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mia/medium/mega-drive.cpp b/mia/medium/mega-drive.cpp index 4fe66eda70..f72619d672 100644 --- a/mia/medium/mega-drive.cpp +++ b/mia/medium/mega-drive.cpp @@ -1,6 +1,6 @@ struct MegaDrive : Cartridge { auto name() -> string override { return "Mega Drive"; } - auto extensions() -> vector override { return {"md", "smd", "gen", "bin"}; } + auto extensions() -> vector override { return {"md", "gen", "bin"}; } auto load(string location) -> bool override; auto save(string location) -> bool override; auto analyze(vector& rom) -> string;