MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / PopulateGameListDirectoryCache

Method PopulateGameListDirectoryCache

pcsx2/ImGui/FullscreenUI_Settings.cpp:1705–1712  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1703}
1704
1705void 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
1714void FullscreenUI::PopulatePatchesAndCheatsList(const std::string_view serial, u32 crc)
1715{

Callers

nothing calls this directly

Calls 2

clearMethod · 0.45
GetStringListMethod · 0.45

Tested by

no test coverage detected