diff options
author | whiterandrek | 2018-05-11 17:45:57 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | 52df3e15f83d503d42b9b19958009c4d7f9feca8 (patch) | |
tree | 45ee04ae77ae86f906d8336e9a46b1feeae78f26 /engines | |
parent | 6f128e9146cf28d219860a0ae9ec1e3d315abb38 (diff) | |
download | scummvm-rg350-52df3e15f83d503d42b9b19958009c4d7f9feca8.tar.gz scummvm-rg350-52df3e15f83d503d42b9b19958009c4d7f9feca8.tar.bz2 scummvm-rg350-52df3e15f83d503d42b9b19958009c4d7f9feca8.zip |
PINK: removed unnecessary method call
Diffstat (limited to 'engines')
-rw-r--r-- | engines/pink/objects/actions/action_sound.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/pink/objects/actions/action_sound.cpp b/engines/pink/objects/actions/action_sound.cpp index f4acb50b1f..af14fce0c5 100644 --- a/engines/pink/objects/actions/action_sound.cpp +++ b/engines/pink/objects/actions/action_sound.cpp @@ -76,8 +76,6 @@ void ActionSound::end() { Director *director = _actor->getPage()->getGame()->getDirector(); director->removeSound(this); - _sound->stop(); - delete _sound; _sound = nullptr; } |