Browse Source

Fixed a rather embarrassing pointer error, which by sheer luck just happened to not cause any issues

console
Nico de Poel 5 years ago
parent
commit
c2f105a604
  1. 2
      engine/Quake/gl_model.c

2
engine/Quake/gl_model.c

@ -2655,7 +2655,7 @@ void Mod_LoadAliasModel (qmodel_t *mod, void *buffer)
// //
GL_MakeAliasModelDisplayLists (mod, pheader); GL_MakeAliasModelDisplayLists (mod, pheader);
UQ_GL_UploadAliasModel(mod->name, pheader, poseverts, triangles, stverts);
UQ_GL_UploadAliasModel(mod, pheader, poseverts, triangles, stverts);
// //
// move the complete, relocatable alias model to the cache // move the complete, relocatable alias model to the cache

Loading…
Cancel
Save