mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-10 06:10:38 +00:00
finally, the stupid sw alias model bug is fixed! There were several possible
symptoms: frozen torches, warped models, crashes, amonst others.
This commit is contained in:
parent
316b74eddc
commit
db7450c11d
1 changed files with 4 additions and 3 deletions
|
@ -292,9 +292,10 @@ Mod_LoadAliasGroup (void *pin, maliasframedesc_t *frame)
|
|||
ptemp = (void *) pin_intervals;
|
||||
|
||||
for (i = 0; i < numframes; i++) {
|
||||
ptemp =
|
||||
Mod_LoadAliasFrame (ptemp,
|
||||
(maliasframedesc_t *) &paliasgroup->frames[i]);
|
||||
maliasframedesc_t temp_frame;
|
||||
ptemp = Mod_LoadAliasFrame (ptemp, &temp_frame);
|
||||
memcpy (&paliasgroup->frames[i], &temp_frame,
|
||||
sizeof(paliasgroup->frames[i]));
|
||||
}
|
||||
|
||||
return ptemp;
|
||||
|
|
Loading…
Reference in a new issue