diff options
-rw-r--r-- | engines/zvision/video/rlf_decoder.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/zvision/video/rlf_decoder.cpp b/engines/zvision/video/rlf_decoder.cpp index 260f912ade..1478822d00 100644 --- a/engines/zvision/video/rlf_decoder.cpp +++ b/engines/zvision/video/rlf_decoder.cpp @@ -164,11 +164,6 @@ bool RLFDecoder::RLFVideoTrack::seek(const Audio::Timestamp &time) { if ((uint)_curFrame == frame) return true; - if (frame < 0) { - _curFrame = 0; - return false; - } - int closestFrame = _curFrame; int distance = (int)frame - _curFrame; |