diff options
author | Strangerke | 2014-04-24 15:27:18 +0200 |
---|---|---|
committer | Strangerke | 2014-04-24 15:27:18 +0200 |
commit | 6801694070d24b02344899959a25e961ce4fded1 (patch) | |
tree | 35483582555dfc45aa32f370b005bf1e0237a746 /engines/mads | |
parent | 41c6ad69716ec4b4df459811fc470e3134bb2229 (diff) | |
download | scummvm-rg350-6801694070d24b02344899959a25e961ce4fded1.tar.gz scummvm-rg350-6801694070d24b02344899959a25e961ce4fded1.tar.bz2 scummvm-rg350-6801694070d24b02344899959a25e961ce4fded1.zip |
MADS: Fix compilation warning in scene 804
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/nebular/nebular_scenes8.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mads/nebular/nebular_scenes8.h b/engines/mads/nebular/nebular_scenes8.h index 45e8716d14..e854fef6d5 100644 --- a/engines/mads/nebular/nebular_scenes8.h +++ b/engines/mads/nebular/nebular_scenes8.h @@ -55,7 +55,7 @@ public: class Scene804: public Scene8xx { private: bool _messWithThrottle; - uint32 _throttleCounter = 0; + uint32 _throttleCounter; bool _movingThrottle; bool _throttleGone; bool _dontPullThrottleAgain; @@ -64,7 +64,7 @@ private: bool _alreadyOrgan; bool _alreadyPop; public: - Scene804(MADSEngine *vm) : Scene8xx(vm) {} + Scene804(MADSEngine *vm) : Scene8xx(vm), _throttleCounter(0) {} virtual void setup(); |