| 2299 | } |
| 2300 | |
| 2301 | static std::string LoadPathFromSettings(SettingsInterface& si, const std::string& root, const char* name, const char* def) |
| 2302 | { |
| 2303 | std::string value = si.GetStringValue("Folders", name, def); |
| 2304 | if (!Path::IsAbsolute(value)) |
| 2305 | value = Path::Combine(root, value); |
| 2306 | return value; |
| 2307 | } |
| 2308 | |
| 2309 | void EmuFolders::LoadConfig(SettingsInterface& si) |
| 2310 | { |
no test coverage detected