This commit is contained in:
MysterD 2022-04-18 22:03:37 -07:00
parent 40b8adaeb9
commit 3025b2ec77
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ void mod_cache_md5(const char* inPath, u8* outDataPath) {
static bool mod_cache_is_valid(struct ModCacheEntry* node) {
if (node == NULL || node->path == NULL || strlen(node->path) == 0) {
return;
return false;
}
u8 dataHash[16] = { 0 };
mod_cache_md5(node->path, dataHash);