------------------------------------------------------------------------------
| 369 | |
| 370 | //------------------------------------------------------------------------------ |
| 371 | const char* DInputManager::getJoystickAxesString( U32 deviceID ) |
| 372 | { |
| 373 | DInputDevice* dptr; |
| 374 | for ( iterator ptr = begin(); ptr != end(); ptr++ ) |
| 375 | { |
| 376 | dptr = dynamic_cast<DInputDevice*>( *ptr ); |
| 377 | if ( dptr && ( dptr->getDeviceType() == JoystickDeviceType ) && ( dptr->getDeviceID() == deviceID ) ) |
| 378 | return( dptr->getJoystickAxesString() ); |
| 379 | } |
| 380 | |
| 381 | return( "" ); |
| 382 | } |
| 383 | |
| 384 | //------------------------------------------------------------------------------ |
| 385 | bool DInputManager::enableXInput() |
no test coverage detected