diff options
author | Torbjörn Andersson | 2005-04-12 08:51:06 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2005-04-12 08:51:06 +0000 |
commit | 996bbacc27d3f7202f2318bf5aeac5d7c0ae6fd0 (patch) | |
tree | 9d17b422829331d4f4a1c26efea28e2d38f2b4e7 | |
parent | eed70f3dbac9cea01375b3351aa4702d510cfbe5 (diff) | |
download | scummvm-rg350-996bbacc27d3f7202f2318bf5aeac5d7c0ae6fd0.tar.gz scummvm-rg350-996bbacc27d3f7202f2318bf5aeac5d7c0ae6fd0.tar.bz2 scummvm-rg350-996bbacc27d3f7202f2318bf5aeac5d7c0ae6fd0.zip |
Removed unnecessary semi-colon.
svn-id: r17565
-rw-r--r-- | scumm/smush/smush_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/smush/smush_player.cpp b/scumm/smush/smush_player.cpp index 11993d3e14..d879a710f3 100644 --- a/scumm/smush/smush_player.cpp +++ b/scumm/smush/smush_player.cpp @@ -1252,7 +1252,7 @@ void SmushPlayer::play(const char *filename, int32 offset, int32 startFrame) { if (_vm->_smushVideoShouldFinish || _vm->_quit || _vm->_saveLoadFlag) break; _vm->_system->delayMillis(10); - }; + } release(); |