Skip to content

Commit cb2287c

Browse files
committed
ui: Add xiso files to loader menu
1 parent f638c99 commit cb2287c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui/xui/popup-menu.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,8 @@ class GamesPopupMenu : public virtual PopupMenu {
390390
std::filesystem::directory_iterator(directory)) {
391391
const auto &file_path = file.path();
392392
if (std::filesystem::is_regular_file(file_path) &&
393-
file_path.extension() == ".iso") {
393+
(file_path.extension() == ".iso" ||
394+
file_path.extension() == ".xiso")) {
394395
sorted_file_names.insert(
395396
{ file_path.stem().string(), file_path });
396397
}

0 commit comments

Comments
 (0)