| 27 | #include <Internal/filesystem.h> |
| 28 | |
| 29 | bool CacheFile::CheckForCache(const std::string &path, const std::string &suffix, std::string *load_path, uint16_t *checksum) { |
| 30 | ModID modsource; |
| 31 | return CheckForCache(path, suffix, load_path, &modsource, checksum); |
| 32 | } |
| 33 | |
| 34 | bool CacheFile::CheckForCache(const std::string &path, const std::string &suffix, std::string *load_path, ModID *load_modsource, uint16_t *checksum) { |
| 35 | std::string cache_str = path + suffix; |
nothing calls this directly
no test coverage detected