Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8316 in orxonox.OLD for trunk/src/lib/coord


Ignore:
Timestamp:
Jun 11, 2006, 1:57:27 PM (19 years ago)
Author:
bensch
Message:

trunk: fixed most -Wall warnings… but there are still many missing :/

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/coord/p_node.cc

    r7954 r8316  
    3636 */
    3737PNode::PNode (PNode* parent, long nodeFlags)
    38     : Synchronizeable(), BaseObject()
     38  : BaseObject(), Synchronizeable()
    3939{
    4040  this->setClassID(CL_PARENT_NODE, "PNode");
     
    798798        {
    799799          this->relDirection = rotQuat;
    800           this->bRelDirChanged;
     800          this->bRelDirChanged = true;
    801801        }
    802802        else
     
    805805          this->toDirection = NULL;
    806806          PRINTF(5)("SmoothRotate of %s finished\n", this->getName());
    807           this->bRelDirChanged;
     807          this->bRelDirChanged = true;
    808808        }
    809809      }
     
    10581058  else if (parentingMode == PNODE_ROTATE_AND_MOVE)
    10591059    return "rotate-and-move";
     1060  else
     1061    return "all";
    10601062}
    10611063
     
    10771079  else  if (parentingMode == "rotate-and-move")
    10781080    return (PNODE_ROTATE_AND_MOVE);
     1081  else
     1082    return PNODE_ALL;
    10791083}
    10801084
Note: See TracChangeset for help on using the changeset viewer.