| 1703 | } |
| 1704 | |
| 1705 | void FullscreenUI::PopulateGameListDirectoryCache(SettingsInterface* si) |
| 1706 | { |
| 1707 | s_game_list_directories_cache.clear(); |
| 1708 | for (std::string& dir : si->GetStringList("GameList", "Paths")) |
| 1709 | s_game_list_directories_cache.emplace_back(std::move(dir), false); |
| 1710 | for (std::string& dir : si->GetStringList("GameList", "RecursivePaths")) |
| 1711 | s_game_list_directories_cache.emplace_back(std::move(dir), true); |
| 1712 | } |
| 1713 | |
| 1714 | void FullscreenUI::PopulatePatchesAndCheatsList(const std::string_view serial, u32 crc) |
| 1715 | { |
nothing calls this directly
no test coverage detected