VIDEO: Fix another IMD seek issue

svn-id: r51877
This commit is contained in:
Sven Hesse 2010-08-08 00:47:25 +00:00
parent 8f621b3d2c
commit 53b67deaf0

View File

@ -716,6 +716,8 @@ bool IMDDecoder::seek(int32 frame, int whence, bool restart) {
for (int i = ((frame > _curFrame) ? _curFrame : 0); i <= frame; i++)
processFrame();
return true;
} else {
warning("IMDDecoder::seek(): Frame %d is not directly accessible", frame + 1);
return false;