Skip to content

Instantly share code, notes, and snippets.

@zorn
Created May 19, 2011 03:07
Show Gist options
  • Save zorn/980112 to your computer and use it in GitHub Desktop.
Save zorn/980112 to your computer and use it in GitHub Desktop.
- (NSString *)filenameForScoreboardTextFontConfig
{
if (UIUserInterfaceIdiomPad == UI_USER_INTERFACE_IDIOM()) {
return @"arcade-hd.fnt";
} else {
if ([[CCDirector sharedDirector] enableRetinaDisplay:YES]) {
return @"arcade-hd.fnt";
} else {
return @"arcade.fnt";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment