From d9f2d23806143d531af34913bc49ded365fe460d Mon Sep 17 00:00:00 2001 From: AlexanderPico Date: Sat, 14 Sep 2013 13:25:48 -0700 Subject: [PATCH] updated GOTHAM fonts to BITHAM per pebble sdk update --- src/TextWatch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TextWatch.c b/src/TextWatch.c index c879cc9..ca2a635 100644 --- a/src/TextWatch.c +++ b/src/TextWatch.c @@ -146,7 +146,7 @@ void display_initial_time(PblTm *t) // Configure the first line of text void configureBoldLayer(TextLayer *textlayer) { - text_layer_set_font(textlayer, fonts_get_system_font(FONT_KEY_GOTHAM_42_BOLD)); + text_layer_set_font(textlayer, fonts_get_system_font(FONT_KEY_BITHAM_42_BOLD)); text_layer_set_text_color(textlayer, GColorWhite); text_layer_set_background_color(textlayer, GColorClear); text_layer_set_text_alignment(textlayer, GTextAlignmentLeft); @@ -155,7 +155,7 @@ void configureBoldLayer(TextLayer *textlayer) // Configure for the 2nd and 3rd lines void configureLightLayer(TextLayer *textlayer) { - text_layer_set_font(textlayer, fonts_get_system_font(FONT_KEY_GOTHAM_42_LIGHT)); + text_layer_set_font(textlayer, fonts_get_system_font(FONT_KEY_BITHAM_42_LIGHT)); text_layer_set_text_color(textlayer, GColorWhite); text_layer_set_background_color(textlayer, GColorClear); text_layer_set_text_alignment(textlayer, GTextAlignmentLeft);