GOB: Remove unnecessary semicolon

svn-id: r55609
This commit is contained in:
Torbjörn Andersson 2011-01-29 09:56:23 +00:00
parent bf01059be1
commit 128e36275d

View File

@ -349,7 +349,7 @@ void VideoPlayer::waitEndFrame(int slot, bool onlySound) {
if (!onlySound || video->decoder->hasSound()) {
uint32 waitTime = video->decoder->getTimeToNextFrame();
if (!video->decoder->hasSound())
waitTime = video->decoder->getStaticTimeToNextFrame();;
waitTime = video->decoder->getStaticTimeToNextFrame();
_vm->_util->delay(waitTime);
}