diff options
| author | Eugene Sandulenko | 2016-11-26 20:42:15 +0100 | 
|---|---|---|
| committer | Eugene Sandulenko | 2016-11-27 14:02:52 +0100 | 
| commit | a9566997aaa873ed45fe79922640d449d3e9c81b (patch) | |
| tree | 037dd180ea45e85aa31d675447fb6239e265f122 | |
| parent | 04f1955702121a471f4d593fc876bfece3341d75 (diff) | |
| download | scummvm-rg350-a9566997aaa873ed45fe79922640d449d3e9c81b.tar.gz scummvm-rg350-a9566997aaa873ed45fe79922640d449d3e9c81b.tar.bz2 scummvm-rg350-a9566997aaa873ed45fe79922640d449d3e9c81b.zip | |
SCUMM HE: More class initializations
| -rw-r--r-- | engines/scumm/he/sprite_he.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/engines/scumm/he/sprite_he.cpp b/engines/scumm/he/sprite_he.cpp index e3f04dfcf0..bef1c0b5eb 100644 --- a/engines/scumm/he/sprite_he.cpp +++ b/engines/scumm/he/sprite_he.cpp @@ -38,7 +38,11 @@ Sprite::Sprite(ScummEngine_v90he *vm)  	_vm(vm),  	_spriteGroups(0),  	_spriteTable(0), -	_activeSpritesTable(0) { +	_activeSpritesTable(0), +	_numSpritesToProcess(0), +	_varNumSpriteGroups(0), +	_varNumSprites(0), +	_varMaxSprites(0) {  }  Sprite::~Sprite() { | 
