From 3025b2ec77233736c29fb4728716051aabaee87e Mon Sep 17 00:00:00 2001 From: MysterD Date: Mon, 18 Apr 2022 22:03:37 -0700 Subject: [PATCH] Whoops --- src/pc/mods/mod_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pc/mods/mod_cache.c b/src/pc/mods/mod_cache.c index edaf40d0..9449bc39 100644 --- a/src/pc/mods/mod_cache.c +++ b/src/pc/mods/mod_cache.c @@ -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);