diff --git a/USERGUIDE.md b/USERGUIDE.md index 414db03e0..ae84fa681 100644 --- a/USERGUIDE.md +++ b/USERGUIDE.md @@ -441,7 +441,7 @@ Scraper service selection, currently ScreenScraper.fr and TheGamesDB.net are sup **Filter** -Criteria for what games to include in the scraping. It can be set to 'All games', 'Favorite games', 'No metadata', 'No game image' or 'No game video'. +Criteria for what games to include in the scraping. It can be set to 'All games', 'Favorite games', 'No metadata', 'No game image', 'No game video' or 'Folders only'. **Systems** @@ -1128,7 +1128,7 @@ Sometimes the name of the console is (more or less) the same for multiple region | samcoupe | SAM Coupé | | | satellaview | Nintendo Satellaview | | | saturn | Sega Saturn | | -| scummvm | ScummVM game engine | | +| scummvm | ScummVM game engine | In separate folder (one folder per game, with complete file structure retained) | | sega32x | Sega Mega Drive 32X | Single archive or ROM file in root folder | | sega32xjp | Sega Super 32X (Japan) | Single archive or ROM file in root folder | | sega32xna | Sega Genesis 32X (North America) | Single archive or ROM file in root folder | diff --git a/es-app/src/guis/GuiScraperMenu.cpp b/es-app/src/guis/GuiScraperMenu.cpp index 8904d0582..a07c291e2 100644 --- a/es-app/src/guis/GuiScraperMenu.cpp +++ b/es-app/src/guis/GuiScraperMenu.cpp @@ -51,6 +51,9 @@ GuiScraperMenu::GuiScraperMenu(Window* window) : GuiComponent(window), mFilters->add("NO GAME VIDEO", [](SystemData*, FileData* g) -> bool { return g->getVideoPath().empty(); }, false); + mFilters->add("FOLDERS ONLY", + [](SystemData*, FileData* g) -> bool { + return g->getType() == FOLDER; }, false); mMenu.addWithLabel("Filter", mFilters); // Add systems (all systems with an existing platform ID are listed).