mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 14:18:37 +00:00
GOB: Remove unnecessary semicolon
svn-id: r55609
This commit is contained in:
parent
bf01059be1
commit
128e36275d
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user