Skip to content

Commit b27e323

Browse files
committed
Fix paths after platform update.
1 parent 582049b commit b27e323

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cocos2d-ui-tests/ios/AppController.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ - (NSDictionary*)iosConfig
4949

5050
- (NSDictionary*)macConfig
5151
{
52-
NSMutableDictionary *config = [super macConfig];
52+
NSMutableDictionary *config = [NSMutableDictionary dictionary];
53+
config[CCMacDefaultWindowSize] = [NSValue valueWithCGSize:[self defaultWindowSize]];
5354
config[CCSetupDepthFormat] = @GL_DEPTH24_STENCIL8;
5455
config[CCSetupTabletScale2X] = @YES;
5556
config[CCSetupShowDebugStats] = @(getenv("SHOW_DEBUG_STATS") != nil);

0 commit comments

Comments
 (0)