ZVISION: Fix uninitialized pointer field (CID 1109699)
This commit is contained in:
parent
b10f66438f
commit
c50024fd86
1 changed files with 4 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue