| 274 | } |
| 275 | |
| 276 | std::string FileFinder::GetPathInsideGamePath(std::string_view path_in) { |
| 277 | return FileFinder::GetPathInsidePath(Game().GetFullPath(), path_in); |
| 278 | } |
| 279 | |
| 280 | bool FileFinder::IsSupportedArchiveExtension(std::string path) { |
| 281 | Utils::LowerCaseInPlace(path); |
nothing calls this directly
no test coverage detected