| 442 | } |
| 443 | |
| 444 | std::string cResourceMan::GetAboutFile() const { |
| 445 | for (auto& ValidPath : mValidPaths) { |
| 446 | auto basepath = ValidPath + "about.png"; |
| 447 | if (FileExists(basepath)) |
| 448 | return basepath; |
| 449 | } |
| 450 | |
| 451 | return ""; |
| 452 | } |
| 453 | |
| 454 | std::string cResourceMan::GetWavPath(const std::string& pFile) const { |
| 455 | for (auto& ValidPath : mValidPaths) { |