Skip to content

Commit

Permalink
enhancement: added .bin, .cdtv and .cd32 as valid rom extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Sep 11, 2024
1 parent 0daf5b0 commit 54c194b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osdep/amiberry_gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ static int isromext(const std::string& path)
return 0;
const std::string ext = path.substr(ext_pos + 1);

static const std::vector<std::string> extensions = { "rom", "adf", "key", "a500", "a1200", "a4000" };
static const std::vector<std::string> extensions = { "rom", "bin", "adf", "key", "a500", "a1200", "a4000", "cdtv", "cd32" };
if (std::find(extensions.begin(), extensions.end(), ext) != extensions.end())
return 1;

Expand Down

0 comments on commit 54c194b

Please sign in to comment.