+ if (Scale_ == 1)
+ return files;
+
+ NSMutableArray *scaled([NSMutableArray arrayWithCapacity:([files count] * 2)]);
+
+ for (NSString *file in files) {
+ [scaled addObject:[NSString stringWithFormat:@"%@@2x.%@", [file stringByDeletingPathExtension], [file pathExtension]]];
+ [scaled addObject:file];
+ }
+
+ return scaled;
+}
+
+static NSString *$getTheme$(NSArray *files) {
+ if (NSString *path = [Themed_ objectForKey:files])
+ return reinterpret_cast<id>(path) == [NSNull null] ? nil : path;
+