Skip to content

Commit

Permalink
Comment out leak traces.
Browse files Browse the repository at this point in the history
  • Loading branch information
djcsdy committed Aug 22, 2010
1 parent fca0941 commit 24c2188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/net/noiseinstitute/ld18/PlayState.as
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,10 @@ package net.noiseinstitute.ld18
trace("dead bullets " + bullets.countDead());
trace("dead collidables " + collidables.countDead());
trace("null aliens " + (aliens.members.length - Math.max(0, aliens.countLiving())));
trace("null bullets " + (bullets.members.length - Math.max(0, bullets.countLiving())));*/
trace("null bullets " + (bullets.members.length - Math.max(0, bullets.countLiving())));
trace("live splosions " + splosions.countLiving());
trace("dead splosions " + splosions.countDead());
trace("null splosions " + (splosions.members.length - Math.max(0, splosions.countLiving())));
trace("null splosions " + (splosions.members.length - Math.max(0, splosions.countLiving())));*/
}

public function bounceOffEdge(obj:LD18Sprite):void {
Expand Down

0 comments on commit 24c2188

Please sign in to comment.