Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1348


Ignore:
Timestamp:
May 21, 2008, 9:05:12 PM (16 years ago)
Author:
rgrieder
Message:

removed debug ouput

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/input/src/core/InputHandler.cc

    r1347 r1348  
    583583      {
    584584        deriveTime_ = 0.0f;
    585         CCOUT(3) << "mouse abs: ";
     585        //CCOUT(3) << "mouse abs: ";
    586586        for (int i = 0; i < 2; i++)
    587587        {
     
    596596            halfAxes_[2*i + 1].absVal_ = -mouseRelative_[i] * derivePeriod_ / 500 * mouseSensitivity_;
    597597          }
    598           COUT(3) << mouseRelative_[i] << " | ";
     598          //COUT(3) << mouseRelative_[i] << " | ";
    599599          mouseRelative_[i] = 0;
    600600        }
    601         COUT(3) << std::endl;
     601        //COUT(3) << std::endl;
    602602      }
    603603      else
     
    654654      int rel[] = { rel_.x, -rel_.y };
    655655
    656       COUT(3) << rel[0] << " | " << rel[1] << std::endl;
     656      //COUT(3) << rel[0] << " | " << rel[1] << std::endl;
    657657
    658658      for (int i = 0; i < 2; i++)
     
    709709  void KeyBinder::mouseScrolled(int abs, int rel)
    710710  {
    711     COUT(3) << mouseButtons_[8].name_ << "   " << abs << " | " << rel << std::endl;
     711    //COUT(3) << mouseButtons_[8].name_ << "   " << abs << " | " << rel << std::endl;
    712712
    713713    if (rel > 0)
Note: See TracChangeset for help on using the changeset viewer.