| 36 | //----------------------------------------------------------------------------- |
| 37 | |
| 38 | bool VTorque::isSoundLooping( SoundEffectType *pSoundProfile ) |
| 39 | { |
| 40 | if ( !pSoundProfile ) |
| 41 | { |
| 42 | // Sanity! |
| 43 | return false; |
| 44 | } |
| 45 | |
| 46 | // Return Looping. |
| 47 | return pSoundProfile->getDescription()->mIsLooping; |
| 48 | } |
| 49 | |
| 50 | S32 VTorque::getSoundDuration( SoundEffectType *pSoundProfile ) |
| 51 | { |
nothing calls this directly
no test coverage detected