Fixed Linux compilation error because of stupid CL accepting anything

This commit is contained in:
smallmodel 2024-01-29 00:01:39 +01:00
parent 45f50cfe25
commit 5f3ee10bc0
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -248,7 +248,7 @@ dtikianim_t *TIKI_LoadTikiAnim(const char *path)
ext = strstr(path, ".");
if (!ext) {
return false;
return NULL;
}
Q_strncpyz(tempName, path, ext - path + 1);