From f5fd39044f3e20f1be87f71aba2d654ab762513f Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Tue, 10 May 2016 16:04:15 -0600 Subject: [PATCH] Longer hour hand, don't use dark blue Humans can't see blue very well. --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index ece32f6..1c538e7 100644 --- a/src/main.c +++ b/src/main.c @@ -1,7 +1,7 @@ #include #define HAND_OUT 200 -#define HAND_IN 50 +#define HAND_IN 45 #define MINUTE_WIDTH 10 #define HOUR_WIDTH 12 #define BORDER_WIDTH PBL_IF_ROUND_ELSE(16, 12) @@ -176,7 +176,7 @@ static void init() { // Pick out a color #ifdef PBL_COLOR uint32_t argb = 0; - while (argb == 0) { + while ((argb == 0) || (argb == 0x000001)) { argb = rand() % 0b00111111; } accent_color = (GColor8){ .argb = argb + 0b11000000 };