diff options
author | Torbjörn Andersson | 2010-09-30 15:22:52 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2010-09-30 15:22:52 +0000 |
commit | 02e759aad3da6e46b3deb6f6124908a4ee6e78b9 (patch) | |
tree | d9b517f2cd73e9f2b5b892aea5caf0a6abd5db36 /graphics | |
parent | 6bbfac77aff11292ec9fb538ebdc38283053e748 (diff) | |
download | scummvm-rg350-02e759aad3da6e46b3deb6f6124908a4ee6e78b9.tar.gz scummvm-rg350-02e759aad3da6e46b3deb6f6124908a4ee6e78b9.tar.bz2 scummvm-rg350-02e759aad3da6e46b3deb6f6124908a4ee6e78b9.zip |
GOB: Make GCC happier.
svn-id: r52956
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/video/codecs/indeo3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/video/codecs/indeo3.cpp b/graphics/video/codecs/indeo3.cpp index 630ebaa81d..443340de2f 100644 --- a/graphics/video/codecs/indeo3.cpp +++ b/graphics/video/codecs/indeo3.cpp @@ -342,7 +342,7 @@ Surface *Indeo3Decoder::decodeImage(Common::SeekableReadStream *stream) { srcUP += chromaWidth; srcVP += chromaWidth; } - if (y < (fHeight - 4)) { + if (y < (fHeight - 4U)) { srcUN += chromaWidth; srcVN += chromaWidth; } |