We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 705b5d4 commit 19f1887Copy full SHA for 19f1887
ui/xui/popup-menu.cc
@@ -390,9 +390,10 @@ class GamesPopupMenu : public virtual PopupMenu {
390
std::filesystem::directory_iterator(directory)) {
391
const auto &file_path = file.path();
392
if (std::filesystem::is_regular_file(file_path) &&
393
- file_path.extension() == ".iso") {
+ (file_path.extension() == ".iso" ||
394
+ file_path.extension() == ".xiso")) {
395
sorted_file_names.insert(
- { file_path.stem().string(), file_path });
396
+ { file_path.stem().string(), file_path.string() });
397
}
398
399
0 commit comments