| 271 | } |
| 272 | |
| 273 | void cSound_Amiga::Sound_Stop() { |
| 274 | |
| 275 | if (SDL_LockMutex( mLock ) == 0) { |
| 276 | |
| 277 | for (auto& SfxIT : mCurrentSfx) { |
| 278 | |
| 279 | delete SfxIT; |
| 280 | SfxIT = 0; |
| 281 | } |
| 282 | |
| 283 | //mCurrentSfx.clear(); |
| 284 | |
| 285 | SDL_UnlockMutex(mLock); |
| 286 | } |
| 287 | } |
nothing calls this directly
no outgoing calls
no test coverage detected