small fix, thx darone

This commit is contained in:
Eduardo Bart 2011-09-08 14:38:21 -03:00
parent 9a9b2fbd13
commit 9aa87da074
1 changed files with 1 additions and 1 deletions

View File

@ -73,6 +73,6 @@ void AnimatedTexture::processAnimation()
AnimatedTexturePtr self = asAnimatedTexture(); AnimatedTexturePtr self = asAnimatedTexture();
// continue to animate only if something still referencing this texture // continue to animate only if something still referencing this texture
if(self.use_count() > 1) if(self.use_count() > 2)
g_dispatcher.scheduleEvent(std::bind(&AnimatedTexture::processAnimation, self), m_framesDelay[m_currentFrame]); g_dispatcher.scheduleEvent(std::bind(&AnimatedTexture::processAnimation, self), m_framesDelay[m_currentFrame]);
} }