Permalink
Browse files
ZVISION: Remove dead code (uint is always > 0)
- Loading branch information
Showing
with
0 additions
and
5 deletions.
-
+0
−5
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; |
|
|
|
|
|
|