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);