diff options
author | Nicola Mettifogo | 2009-03-15 04:29:26 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2009-03-15 04:29:26 +0000 |
commit | 82e1d15aef81f4ecbd26c52f3333b2727360ce16 (patch) | |
tree | 2e5a717f42f265f388061f193b82d41b9ff8ca7f /engines/parallaction | |
parent | efa319ff6747d0b078d9e739cd419b78414007d3 (diff) | |
download | scummvm-rg350-82e1d15aef81f4ecbd26c52f3333b2727360ce16.tar.gz scummvm-rg350-82e1d15aef81f4ecbd26c52f3333b2727360ce16.tar.bz2 scummvm-rg350-82e1d15aef81f4ecbd26c52f3333b2727360ce16.zip |
Added missing initializations.
svn-id: r39407
Diffstat (limited to 'engines/parallaction')
-rw-r--r-- | engines/parallaction/gfxbase.cpp | 2 | ||||
-rw-r--r-- | engines/parallaction/input.cpp | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/engines/parallaction/gfxbase.cpp b/engines/parallaction/gfxbase.cpp index c4109c41b6..a0becfe70e 100644 --- a/engines/parallaction/gfxbase.cpp +++ b/engines/parallaction/gfxbase.cpp @@ -33,7 +33,7 @@ namespace Parallaction { GfxObj::GfxObj(uint objType, Frames *frames, const char* name) : - _frames(frames), _keep(true), x(0), y(0), z(0), _flags(0), + _frames(frames), _keep(true), x(0), y(0), z(0), _prog(0), _flags(0), type(objType), frame(0), layer(3), scale(100), _hasMask(false), _hasPath(false) { if (name) { diff --git a/engines/parallaction/input.cpp b/engines/parallaction/input.cpp index e1efe01fab..a681660ce0 100644 --- a/engines/parallaction/input.cpp +++ b/engines/parallaction/input.cpp @@ -71,6 +71,10 @@ Input::Input(Parallaction *vm) : _vm(vm) { _mouseButtons = 0; _delayedActionZone.reset(); + _dinoCursor = 0; + _dougCursor = 0; + _donnaCursor = 0; + _comboArrow = 0; initCursors(); } |