diff options
author | Torbjörn Andersson | 2009-05-11 19:04:06 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2009-05-11 19:04:06 +0000 |
commit | 2ba1da41e8e189ea5c89b56bb6d6faca80a0268f (patch) | |
tree | 4767ef18639462108233fcc059569a8fca1e552e | |
parent | 03dffbcc1875615bdb9f8ee7133e1f27afe6962a (diff) | |
download | scummvm-rg350-2ba1da41e8e189ea5c89b56bb6d6faca80a0268f.tar.gz scummvm-rg350-2ba1da41e8e189ea5c89b56bb6d6faca80a0268f.tar.bz2 scummvm-rg350-2ba1da41e8e189ea5c89b56bb6d6faca80a0268f.zip |
Silenced warning.
svn-id: r40464
-rw-r--r-- | engines/scumm/smush/smush_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/smush/smush_player.cpp b/engines/scumm/smush/smush_player.cpp index be67728327..88e3fa4247 100644 --- a/engines/scumm/smush/smush_player.cpp +++ b/engines/scumm/smush/smush_player.cpp @@ -1023,7 +1023,7 @@ void SmushPlayer::parseNextFrame() { const int32 subSize = _base->readUint32BE(); const int32 subOffset = _base->pos(); - if (_base->pos() >= _baseSize) { + if (_base->pos() >= (int32)_baseSize) { _vm->_smushVideoShouldFinish = true; _endOfFile = true; return; |