Skip to content

Commit

Permalink
mia: remove support for loading ".smd" extension
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
LukeUsher committed Nov 13, 2023
1 parent da9c829 commit de1c127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mia/medium/mega-drive.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
struct MegaDrive : Cartridge {
auto name() -> string override { return "Mega Drive"; }
auto extensions() -> vector<string> override { return {"md", "smd", "gen", "bin"}; }
auto extensions() -> vector<string> override { return {"md", "gen", "bin"}; }
auto load(string location) -> bool override;
auto save(string location) -> bool override;
auto analyze(vector<u8>& rom) -> string;
Expand Down

0 comments on commit de1c127

Please sign in to comment.