mirror of https://github.com/axmolengine/axmol.git
closed #3990: ParticleSystemQuad::setTotalParticles() can't set a value larger than the initialized value.
This commit is contained in:
parent
a255478127
commit
c0b8460aef
|
@ -468,7 +468,6 @@ void ParticleSystemQuad::setTotalParticles(int tp)
|
|||
_indices = indicesNew;
|
||||
|
||||
// Clear the memory
|
||||
// XXX: Bug? If the quads are cleared, then drawing doesn't work... WHY??? XXX
|
||||
memset(_particles, 0, particlesSize);
|
||||
memset(_quads, 0, quadsSize);
|
||||
memset(_indices, 0, indicesSize);
|
||||
|
@ -506,6 +505,10 @@ void ParticleSystemQuad::setTotalParticles(int tp)
|
|||
{
|
||||
setupVBO();
|
||||
}
|
||||
|
||||
// fixed http://www.cocos2d-x.org/issues/3990
|
||||
// Updates texture coords.
|
||||
setTexture(_texture);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue