Fix 'comparison between signed and unsigned integer' warning
svn-id: r22094
This commit is contained in:
parent
f26b55c7a3
commit
cbb5f5fc75
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ void MoviePlayer::processFrame() {
|
|||
memcpy(_vm->_frontBuf, _frameBuffer1, _frameSize);
|
||||
_vm->_system->copyRectToScreen(_vm->_frontBuf, _width, x, y, _width, _height);
|
||||
|
||||
if ((_bgSoundStream == NULL) || ((_mixer->getSoundElapsedTime(_bgSound) * _frameRate) / 1000 < _frameNum + 1) ||
|
||||
if ((_bgSoundStream == NULL) || ((int)(_mixer->getSoundElapsedTime(_bgSound) * _frameRate) / 1000 < _frameNum + 1) ||
|
||||
_frameSkipped > _frameRate) {
|
||||
if (_frameSkipped > _frameRate) {
|
||||
warning("force frame %i redraw", _frameNum);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue