Skip to content

Commit

Permalink
Add gray compass coloration
Browse files Browse the repository at this point in the history
  • Loading branch information
theDrake committed Sep 1, 2015
1 parent f812199 commit e75951c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/maze_crawler.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,14 +192,16 @@ void update_status_bar(GContext *ctx)
text_layer_set_text(g_time_text_layer, time_str);

// Draw the compass:
graphics_context_set_fill_color(ctx, GColorWhite);
#ifdef PBL_COLOR
graphics_context_set_fill_color(ctx, GColorLightGray);
graphics_fill_circle(ctx,
GPoint(HALF_SCREEN_WIDTH,
GRAPHICS_FRAME_HEIGHT + STATUS_BAR_HEIGHT +
STATUS_BAR_HEIGHT / 2),
COMPASS_RADIUS);
graphics_context_set_stroke_color(ctx, GColorDarkGray);
#else
graphics_context_set_fill_color(ctx, GColorWhite);
graphics_fill_circle(ctx,
GPoint(HALF_SCREEN_WIDTH,
GRAPHICS_FRAME_HEIGHT + STATUS_BAR_HEIGHT / 2),
Expand Down

0 comments on commit e75951c

Please sign in to comment.