Using 0.8.5 CCSpriteBatchNode::getChildren doesn't work

Hello

I just updated to 0.8.5.
Before I had the following code which was working:
CCMutableArray<CCNode*>* nodes = spritesheet->getChildren();
and now I get the following error: "You cannot initialize a variable of type ‘’CCMutableArray<CCNode*>’ with a rvalue of type ’CCArray’.

I then tried to cast it to CCMutableArray like this:
CCMutableArray<CCNode*>* nodes = (CCMutableArray<CCNode*>*)spritesheet->getChildren();

The compile error is gone, but still the code is not working.

Can you please tell me if something changed in CCSpriteBatchNode or if am I doing something wrong.
Thanks!

I found the change that was made in 0.8.3
Sorry for wasting your time.

Have a nice day!

:slight_smile: the same to you!