aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/nebular
diff options
context:
space:
mode:
authorStrangerke2014-05-20 17:30:41 +0200
committerStrangerke2014-05-20 17:30:41 +0200
commit6804c085461fdaddf58e7885ed83b70662afbfae (patch)
tree93575c44d3e3c7a1a4b04e66230567eb5bf63709 /engines/mads/nebular
parent8a08a19097b4338c73dc9456622b75233b9b0194 (diff)
downloadscummvm-rg350-6804c085461fdaddf58e7885ed83b70662afbfae.tar.gz
scummvm-rg350-6804c085461fdaddf58e7885ed83b70662afbfae.tar.bz2
scummvm-rg350-6804c085461fdaddf58e7885ed83b70662afbfae.zip
MADS: Fix compilation warning reported by digitall
Diffstat (limited to 'engines/mads/nebular')
-rw-r--r--engines/mads/nebular/nebular_scenes3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/nebular/nebular_scenes3.cpp b/engines/mads/nebular/nebular_scenes3.cpp
index 4cf1a2da50..9237c62f48 100644
--- a/engines/mads/nebular/nebular_scenes3.cpp
+++ b/engines/mads/nebular/nebular_scenes3.cpp
@@ -2697,7 +2697,7 @@ void Scene318::step() {
}
uint32 tmpFrame = _vm->_events->getFrameCounter();
- uint32 diffFrame = tmpFrame - _lastFrameCounter;
+ long diffFrame = tmpFrame - _lastFrameCounter;
_lastFrameCounter = tmpFrame;
if ((_animMode == 2) && !_internVisibleFl && _game._player._stepEnabled) {