~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/blenloader/intern/writefile.c

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 *
3
3
 * .blend file writing
4
4
 *
5
 
 * $Id: writefile.c,v 1.100 2007/02/14 11:00:05 ton Exp $
 
5
 * $Id: writefile.c,v 1.101 2007/04/07 03:32:56 aligorith Exp $
6
6
 *
7
7
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
8
8
 *
744
744
                case CONSTRAINT_TYPE_RIGIDBODYJOINT:
745
745
                        writestruct(wd, DATA, "bRigidBodyJointConstraint", 1, con->data);
746
746
                        break;
 
747
                case CONSTRAINT_TYPE_CLAMPTO:
 
748
                        writestruct(wd, DATA, "bClampToConstraint", 1, con->data);
 
749
                        break;
747
750
                default:
748
751
                        break;
749
752
                }