| 325 | } |
| 326 | |
| 327 | std::string SystemData::getConfigPath() |
| 328 | { |
| 329 | std::string home = getHomePath(); |
| 330 | if(home.empty()) |
| 331 | { |
| 332 | LOG(LogError) << "$HOME environment variable empty or nonexistant!"; |
| 333 | exit(1); |
| 334 | return ""; |
| 335 | } |
| 336 | |
| 337 | return(home + "/.emulationstation/es_systems.cfg"); |
| 338 | } |
| 339 | |
| 340 | FolderData* SystemData::getRootFolder() |
| 341 | { |
nothing calls this directly
no test coverage detected