From: Jay Freeman (saurik) Date: Thu, 4 Dec 2014 09:03:12 +0000 (-0800) Subject: Due to @3x we need more room for the scaled paths. X-Git-Tag: v0.9.3918~2 X-Git-Url: https://git.saurik.com/winterboard.git/commitdiff_plain/7c9204c47b8b5fe9a57f69f5ffc9ccad8c2c892b Due to @3x we need more room for the scaled paths. --- diff --git a/Library.mm b/Library.mm index 016eaca..b902d4a 100644 --- a/Library.mm +++ b/Library.mm @@ -298,7 +298,7 @@ static NSArray *$useScale$(NSArray *files, bool use = true) { NSString *idiom(IsWild_ ? @"ipad" : @"iphone"); - NSMutableArray *scaled([NSMutableArray arrayWithCapacity:([files count] * 4)]); + NSMutableArray *scaled([NSMutableArray arrayWithCapacity:([files count] * 6)]); for (NSString *file in files) { NSString *base([file stringByDeletingPathExtension]);