diff options
author | Filippos Karapetis | 2016-09-26 04:09:21 +0300 |
---|---|---|
committer | Filippos Karapetis | 2016-10-03 00:33:53 +0300 |
commit | ecc212a31ab94e1abda628217eacff9ac6f39948 (patch) | |
tree | 298eca7f9b36558e3603ea468ea795977aac5842 | |
parent | 7331bdc6b1f15bc9f5c8e186d4f19923c1c723a4 (diff) | |
download | scummvm-rg350-ecc212a31ab94e1abda628217eacff9ac6f39948.tar.gz scummvm-rg350-ecc212a31ab94e1abda628217eacff9ac6f39948.tar.bz2 scummvm-rg350-ecc212a31ab94e1abda628217eacff9ac6f39948.zip |
CHEWY: Properly close videos when they end
-rw-r--r-- | engines/chewy/graphics.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/chewy/graphics.cpp b/engines/chewy/graphics.cpp index 887bb75bb4..fda46a3e7a 100644 --- a/engines/chewy/graphics.cpp +++ b/engines/chewy/graphics.cpp @@ -81,5 +81,8 @@ void Graphics::playVideo(uint num) { g_system->delayMillis(10); } + + cfoDecoder->close(); } + } // End of namespace Chewy |