| 297 | } |
| 298 | |
| 299 | std::string sGameVersion::getDataPath() const { |
| 300 | |
| 301 | if (isCustom()) { |
| 302 | return g_Fodder->mVersions->GetRetail(ePlatform::Any, mGame)->getDataPath(); |
| 303 | } |
| 304 | |
| 305 | return g_ResourceMan->FindVersionPath(this); |
| 306 | } |
| 307 | |
| 308 | std::string sGameVersion::getDataFilePath(std::string pFile) const { |
| 309 |
nothing calls this directly
no test coverage detected