Merge pull request #441 from birarda/master

fix a couple of warnings
This commit is contained in:
ZappoMan 2013-05-28 16:28:27 -07:00
commit 36fed3db9c
2 changed files with 6 additions and 5 deletions

View file

@ -61,10 +61,10 @@ Head::Head(Avatar* owningAvatar) :
_audioAttack(0.0f),
_returnSpringScale(1.0f),
_bodyRotation(0.0f, 0.0f, 0.0f),
_renderLookatVectors(false),
_mohawkTriangleFan(NULL),
_mohawkColors(NULL),
_renderLookatVectors(false) {
_mohawkColors(NULL)
{
if (USING_PHYSICAL_MOHAWK) {
resetHairPhysics();
}

View file

@ -19,10 +19,11 @@ enum BoxFace {
MIN_Y_FACE,
MAX_Y_FACE,
MIN_Z_FACE,
MAX_Z_FACE,
FACE_COUNT
MAX_Z_FACE
};
const int FACE_COUNT = 6;
class AABox
{