uninitialized variables-verve

This commit is contained in:
AzaezelX 2020-05-11 15:53:14 -05:00
parent 43259e29c1
commit 36cbc4c962
3 changed files with 12 additions and 7 deletions

View file

@ -29,7 +29,9 @@ IMPLEMENT_CONOBJECT( VSpawnSphereSpawnTargetTrack );
VSpawnSphereSpawnTargetTrack::VSpawnSphereSpawnTargetTrack( void )
{
setLabel( "SpawnTargetTrack" );
mDespawnOnStop = false;
mDespawnOnLoop = false;
setLabel( "SpawnTargetTrack" );
}
void VSpawnSphereSpawnTargetTrack::initPersistFields( void )
@ -152,4 +154,4 @@ void VSpawnSphereSpawnTargetTrack::despawnTargets( void )
// Delete the Object.
object->deleteObject();
}
}
}