Skip to content

Commit

Permalink
mia: allow atari 2600 to load .bin format roms
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeUsher committed Aug 22, 2023
1 parent d5381e4 commit 40a6b8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mia/medium/atari-2600.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
struct Atari2600 : Cartridge {
auto name() -> string override { return "Atari 2600"; }
auto extensions() -> vector<string> override { return {"a26"}; }
auto extensions() -> vector<string> override { return {"a26", "bin"}; }
auto load(string location) -> bool override;
auto save(string location) -> bool override;
auto analyze(vector<u8>& rom, string location) -> string;
Expand Down

0 comments on commit 40a6b8d

Please sign in to comment.