mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-04 01:46:42 +00:00
ZVISION: Fix uninitialized pointer field (CID 1109699)
This commit is contained in:
parent
b10f66438f
commit
c50024fd86
@ -48,7 +48,10 @@ LeverControl::LeverControl(ZVision *engine, uint32 key, Common::SeekableReadStre
|
|||||||
_mouseIsCaptured(false),
|
_mouseIsCaptured(false),
|
||||||
_isReturning(false),
|
_isReturning(false),
|
||||||
_accumulatedTime(0),
|
_accumulatedTime(0),
|
||||||
_returnRoutesCurrentFrame(0) {
|
_returnRoutesCurrentFrame(0),
|
||||||
|
_animation(NULL),
|
||||||
|
_cursor(CursorIndex_Active),
|
||||||
|
_mirrored(false) {
|
||||||
|
|
||||||
// Loop until we find the closing brace
|
// Loop until we find the closing brace
|
||||||
Common::String line = stream.readLine();
|
Common::String line = stream.readLine();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user