/////////////////////////////////////////////////////////////////////
| 1972 | |
| 1973 | ////////////////////////////////////////////////////////////////////////// |
| 1974 | void CSoundSystem::LockResources() |
| 1975 | { |
| 1976 | for (SoundBufferPropsMapItor It=m_soundBuffers.begin();It!=m_soundBuffers.end();It++) |
| 1977 | { |
| 1978 | CSoundBuffer *pBuf = It->second; |
| 1979 | m_lockedResources.push_back( pBuf ); |
| 1980 | } |
| 1981 | } |
| 1982 | |
| 1983 | ////////////////////////////////////////////////////////////////////////// |
| 1984 | void CSoundSystem::UnlockResources() |
no test coverage detected