| 431 | //----------------------------------------------------------------------------- |
| 432 | |
| 433 | void SFXSound::_pause() |
| 434 | { |
| 435 | Parent::_pause(); |
| 436 | |
| 437 | if( mVoice ) |
| 438 | mVoice->pause(); |
| 439 | mSetPositionValue = getPosition(); |
| 440 | } |
| 441 | |
| 442 | //----------------------------------------------------------------------------- |
| 443 |
nothing calls this directly
no test coverage detected