aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2015-01-19 23:22:23 +0200
committerFilippos Karapetis2015-01-19 23:22:23 +0200
commitecc45b961f732c013053632db80976c878fad410 (patch)
tree5a963c80c04769d46e0d6509cff6a4bfde139e6f
parent68b7839d994d536c7e65b3bfe5045ba164bbedd5 (diff)
parent08b6a5b4865453e916709003e3a0b1a032b8e97e (diff)
downloadscummvm-rg350-ecc45b961f732c013053632db80976c878fad410.tar.gz
scummvm-rg350-ecc45b961f732c013053632db80976c878fad410.tar.bz2
scummvm-rg350-ecc45b961f732c013053632db80976c878fad410.zip
Merge pull request #567 from fedor4ever/master
ZVISION: Fix comparison between signed and unsigned integers
-rw-r--r--engines/zvision/video/rlf_decoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/video/rlf_decoder.cpp b/engines/zvision/video/rlf_decoder.cpp
index 040582bcf8..3e11a70f27 100644
--- a/engines/zvision/video/rlf_decoder.cpp
+++ b/engines/zvision/video/rlf_decoder.cpp
@@ -169,7 +169,7 @@ bool RLFDecoder::RLFVideoTrack::seek(const Audio::Timestamp &time) {
if (distance < 0) {
for (uint i = 0; i < _completeFrames.size(); ++i) {
- if ((int)_completeFrames[i] > frame)
+ if (_completeFrames[i] > frame)
break;
closestFrame = _completeFrames[i];
}