ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/anim.C
(Generate patch)

Comparing deliantra/server/common/anim.C (file contents):
Revision 1.28 by root, Thu Nov 8 19:43:23 2007 UTC vs.
Revision 1.29 by root, Tue Jan 22 15:53:01 2008 UTC

30std::vector<animation> animations; 30std::vector<animation> animations;
31 31
32void 32void
33animation::resize (int new_size) 33animation::resize (int new_size)
34{ 34{
35 sfree <faceidx> (faces, num_animations); 35 sfree<faceidx> (faces, num_animations);
36 num_animations = new_size; 36 num_animations = new_size;
37 faces = salloc<faceidx> (num_animations); 37 faces = salloc<faceidx> (num_animations);
38} 38}
39 39
40animation & 40animation &

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines