- Timestamp:
- Nov 24, 2013, 11:15:46 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/wiimote/src/libraries/core/input/InputState.cc
r9790 r9805 49 49 priority_ = 0; 50 50 51 handlers_.resize(InputDeviceEnumerator::FirstJoyStick + this->getJoyStickList().size(), NULL); 51 // SANDRO HACK: make this 1 larger so we can have the wiimote read out as well 52 //handlers_.resize(InputDeviceEnumerator::FirstJoyStick + this->getJoyStickList().size(), NULL); 53 handlers_.resize(InputDeviceEnumerator::FirstJoyStick 54 + 1 + this->getJoyStickList().size(), NULL); 52 55 } 53 56 … … 98 101 setMouseHandler(handler); 99 102 setJoyStickHandler(handler); 103 setWiiMoteHandler(handler); // SANDRO HACK 100 104 } 101 105
Note: See TracChangeset
for help on using the changeset viewer.