| 918 | // |
| 919 | //***************************************************************************** |
| 920 | const char * IInputManager::GetConfigurationDescription( u32 configuration_idx ) const |
| 921 | { |
| 922 | if( configuration_idx < mControllerConfigs.size() ) |
| 923 | { |
| 924 | return mControllerConfigs[ configuration_idx ]->GetDescription(); |
| 925 | } |
| 926 | else |
| 927 | { |
| 928 | #ifdef DAEDALUS_DEBUG_CONSOLE |
| 929 | DAEDALUS_ERROR( "Invalid controller config" ); |
| 930 | #endif |
| 931 | return "?"; |
| 932 | } |
| 933 | } |
| 934 | |
| 935 | //***************************************************************************** |
| 936 | // |
no test coverage detected