Doesn't look like indexes are actually needed first here (this should fix the issues with the md5s that electro has).

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3225 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2009-06-17 21:57:45 +00:00
parent 17512cc406
commit 8260a0d206
1 changed files with 1 additions and 1 deletions

View File

@ -4074,7 +4074,7 @@ galiasinfo_t *Mod_ParseMD5MeshModel(char *buffer)
buffer = COM_Parse(buffer);
num = atoi(com_token);
if (num < 0 || num >= numverts || !indexes)
if (num < 0 || num >= numverts)
MD5ERROR0PARAM("MD5MESH: vertex out of range");
EXPECT("(");