[[Director sharedDirector] runWithScene:[FadeTransition transitionWithDuration:TRANSITION_TIME scene:[FirstScene node] withColor:ccc3(1.0,1.0,1.0)]];
[[Director sharedDirector] runWithScene:[FirstScene node]];
Either of the above seems to cause a leak, at least according to Instruments. I've taken to releasing the first scene at the app delegate's dealloc, doesn't seem to cause any problems, but I'd like to ask what others might have done to deal with this.