Skip to content

Commit

Permalink
Accept unh extension for unheadered NES roms (ares-emulator#1535)
Browse files Browse the repository at this point in the history
No-Intro uses the unh extension for un-headered NES roms. Accept this as
a valid extension for the famicom core.
  • Loading branch information
remutro authored Jun 16, 2024
1 parent a876f44 commit 4dbd6fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mia/medium/famicom.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
struct Famicom : Cartridge {
auto name() -> string override { return "Famicom"; }
auto extensions() -> vector<string> override { return {"fc", "nes", "unf", "unif"}; }
auto extensions() -> vector<string> override { return {"fc", "nes", "unf", "unif", "unh"}; }
auto load(string location) -> bool override;
auto save(string location) -> bool override;
auto analyze(vector<u8>& data) -> string;
Expand Down

0 comments on commit 4dbd6fa

Please sign in to comment.