| 433 | } |
| 434 | |
| 435 | std::string cResourceMan::GetTestPath(const sGameVersion* pVersion, const std::string pFile) const { |
| 436 | for (auto& ValidPath : mValidPaths) { |
| 437 | auto basepath = ValidPath + PathGenerate(pFile, eTest); |
| 438 | if (FileExists(basepath)) |
| 439 | return basepath; |
| 440 | } |
| 441 | return ""; |
| 442 | } |
| 443 | |
| 444 | std::string cResourceMan::GetAboutFile() const { |
| 445 | for (auto& ValidPath : mValidPaths) { |
no outgoing calls