mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-10 14:20: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;
|
ptemp = (void *) pin_intervals;
|
||||||
|
|
||||||
for (i = 0; i < numframes; i++) {
|
for (i = 0; i < numframes; i++) {
|
||||||
ptemp =
|
maliasframedesc_t temp_frame;
|
||||||
Mod_LoadAliasFrame (ptemp,
|
ptemp = Mod_LoadAliasFrame (ptemp, &temp_frame);
|
||||||
(maliasframedesc_t *) &paliasgroup->frames[i]);
|
memcpy (&paliasgroup->frames[i], &temp_frame,
|
||||||
|
sizeof(paliasgroup->frames[i]));
|
||||||
}
|
}
|
||||||
|
|
||||||
return ptemp;
|
return ptemp;
|
||||||
|
|
Loading…
Reference in a new issue