Changeset 20362

Show
Ignore:
Timestamp:
06/27/07 14:17:36 (1 year ago)
Author:
patrick
Message:

MFT r20344: Removed debug output.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/branches/2.2/modules/gadgeteer/drivers/Microsoft/DirectXJoystick/DirectXJoystickStandalone.cpp

    r19729 r20362  
    2626 
    2727#include <windows.h> 
    28  
    29 #ifdef _DEBUG 
    30 #  include <iostream> 
    31 #endif 
    3228 
    3329#include <dinput.h> 
     
    344340      { 
    345341         value_addr = &mJsData.lX; 
    346 #ifdef _DEBUG 
    347          std::cout << "Object for X axis" << std::endl; 
    348 #endif 
    349342      } 
    350343      else if ( doi->guidType == GUID_YAxis ) 
    351344      { 
    352345         value_addr = &mJsData.lY; 
    353 #ifdef _DEBUG 
    354          std::cout << "Object for Y axis" << std::endl; 
    355 #endif 
    356346      } 
    357347      else if ( doi->guidType == GUID_ZAxis ) 
    358348      { 
    359349         value_addr = &mJsData.lZ; 
    360 #ifdef _DEBUG 
    361          std::cout << "Object for Z axis" << std::endl; 
    362 #endif 
    363350      } 
    364351      else if ( doi->guidType == GUID_RxAxis ) 
    365352      { 
    366353         value_addr = &mJsData.lRx; 
    367 #ifdef _DEBUG 
    368          std::cout << "Object for X axis rotation" << std::endl; 
    369 #endif 
    370354      } 
    371355      else if ( doi->guidType == GUID_RyAxis ) 
    372356      { 
    373357         value_addr = &mJsData.lRy; 
    374 #ifdef _DEBUG 
    375          std::cout << "Object for Y axis rotation" << std::endl; 
    376 #endif 
    377358      } 
    378359      else if ( doi->guidType == GUID_RzAxis ) 
    379360      { 
    380361         value_addr = &mJsData.lRz; 
    381 #ifdef _DEBUG 
    382          std::cout << "Object for Z axis rotation" << std::endl; 
    383 #endif 
    384362      } 
    385363      else if ( doi->guidType == GUID_Slider ) 
     
    395373            value_addr = &mJsData.rglSlider[1]; 
    396374         } 
    397 #ifdef _DEBUG 
    398          std::cout << "Object for slider" << std::endl; 
    399 #endif 
    400       } 
    401  
    402 #ifdef _DEBUG 
    403       std::cout << "Setting mAxisValueMap[" << axis_index << "]" << std::endl; 
    404 #endif 
     375      } 
     376 
    405377      mAxisValueMap[axis_index] = value_addr; 
    406378      axis_index--;