ui: Add xiso files to loader menu

This commit is contained in:
Erik Abair
2025-09-18 21:27:05 -07:00
committed by mborgerson
parent 705b5d4759
commit 19f18873d9

View File

@ -390,9 +390,10 @@ public:
std::filesystem::directory_iterator(directory)) {
const auto &file_path = file.path();
if (std::filesystem::is_regular_file(file_path) &&
file_path.extension() == ".iso") {
(file_path.extension() == ".iso" ||
file_path.extension() == ".xiso")) {
sorted_file_names.insert(
{ file_path.stem().string(), file_path });
{ file_path.stem().string(), file_path.string() });
}
}
}