diff options
-rw-r--r-- | engines/zvision/scripting/controls/lever_control.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/zvision/scripting/controls/lever_control.cpp b/engines/zvision/scripting/controls/lever_control.cpp index 71dd52f40f..8faa18357c 100644 --- a/engines/zvision/scripting/controls/lever_control.cpp +++ b/engines/zvision/scripting/controls/lever_control.cpp @@ -48,7 +48,10 @@ LeverControl::LeverControl(ZVision *engine, uint32 key, Common::SeekableReadStre _mouseIsCaptured(false), _isReturning(false), _accumulatedTime(0), - _returnRoutesCurrentFrame(0) { + _returnRoutesCurrentFrame(0), + _animation(NULL), + _cursor(CursorIndex_Active), + _mirrored(false) { // Loop until we find the closing brace Common::String line = stream.readLine(); |