Yup, TimeServ did add an endian bug with his qtest model support, it seems.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2154 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
29e87fc744
commit
f1fc7284b5
1 changed files with 1 additions and 1 deletions
|
@ -3412,7 +3412,7 @@ qboolean GL_LoadQ1Model (model_t *mod, void *buffer)
|
|||
|
||||
pq1inmodel = (dmdl_t *)buffer;
|
||||
|
||||
version = pq1inmodel->version;
|
||||
version = LittleLong(pq1inmodel->version);
|
||||
if (version == QTESTALIAS_VERSION)
|
||||
qtest = true;
|
||||
else if (version != ALIAS_VERSION)
|
||||
|
|
Loading…
Reference in a new issue