From 6801694070d24b02344899959a25e961ce4fded1 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Thu, 24 Apr 2014 15:27:18 +0200 Subject: MADS: Fix compilation warning in scene 804 --- engines/mads/nebular/nebular_scenes8.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines') 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(); -- cgit v1.2.3