diff --git a/src/osdep/amiberry_gui.cpp b/src/osdep/amiberry_gui.cpp index 13b886fc..7fcadc4b 100644 --- a/src/osdep/amiberry_gui.cpp +++ b/src/osdep/amiberry_gui.cpp @@ -380,7 +380,7 @@ static int isromext(const std::string& path, bool deepscan) return 0; const std::string ext = path.substr(ext_pos + 1); - static const std::vector extensions = { "rom", "bin", "vbi", "adf", "key", "a500", "a1200", "a4000", "cdtv", "cd32" }; + static const std::vector extensions = { "rom", "bin", "adf", "key", "a500", "a1200", "a4000", "cdtv", "cd32" }; if (std::find(extensions.begin(), extensions.end(), ext) != extensions.end()) return 1; diff --git a/src/osdep/gui/PanelExpansions.cpp b/src/osdep/gui/PanelExpansions.cpp index a63037f6..07216826 100644 --- a/src/osdep/gui/PanelExpansions.cpp +++ b/src/osdep/gui/PanelExpansions.cpp @@ -884,7 +884,7 @@ class ExpansionsActionListener : public gcn::ActionListener if (source == btnScsiRomChooser) { - const char* filter[] = { ".rom", ".bin", ".vbi", "\0" }; + const char* filter[] = { ".rom", ".bin", "\0" }; std::string full_path = SelectFile("Select ROM", get_rom_path(), filter); if (!full_path.empty()) { @@ -901,7 +901,7 @@ class ExpansionsActionListener : public gcn::ActionListener } else if (source == btnCpuBoardRomChooser) { - const char* filter[] = { ".rom", ".bin", ".vbi", "\0" }; + const char* filter[] = { ".rom", ".bin", "\0" }; std::string full_path = SelectFile("Select ROM", get_rom_path(), filter); if (!full_path.empty()) {