Fix all -Wconversion-null warnings

This commit is contained in:
Luke Street
2026-02-28 15:59:24 -07:00
parent 475ca80882
commit 62f42abe12
54 changed files with 108 additions and 100 deletions
+1 -1
View File
@@ -192,7 +192,7 @@ u32 JKRFileCache::readResource(void* dst, u32 dstLength, u32, const char* path)
if (findFile(finalPath, path)) {
return readResource(dst, dstLength, filePath);
}
return NULL;
return 0;
}
void JKRFileCache::removeResourceAll(void) {