Disable log output on release build

This commit is contained in:
Keita Obo 2013-09-15 13:07:58 +09:00
parent 6b0d365d91
commit e0b13e8836
1 changed files with 4 additions and 0 deletions

View File

@ -33,6 +33,10 @@
#import "CCES2Renderer.h"
#import "OpenGL_Internal.h"
#if !defined(COCOS2D_DEBUG) || COCOS2D_DEBUG == 0
#define NSLog(...) do {} while (0)
#endif
@implementation CCES2Renderer
@synthesize context=context_;