Bug with profiling in CCSpriteBatchNode.cpp

I found small bug in CCSpriteBatchNode.cpp

Include section without

#include "support/CCProfiling.h"

In last release method “draw” begins:

void CCSpriteBatchNode::draw(void)
{
    CC_PROFILER_STOP("CCSpriteBatchNode - draw");

need:

void CCSpriteBatchNode::draw(void)
{
    CC_PROFILER_START("CCSpriteBatchNode - draw");