classic-lite

Minimalist rewrite of Łukasz Zalewski's "classic" pebble watchface
git clone https://git.instinctive.eu/classic-lite.git
Log | Files | Refs | README | LICENSE

commit 0f990ab6a4f2819dd9e02360ad7dfa6c73b52a57
parent bb3426807b08ac7fc33be568fe441dd8fd515ead
Author: Natasha Kerensikova <natacha@instinctive.eu>
Date:   Tue,  8 Dec 2015 19:01:27 +0000

Use slightly larger hands on the Pebble Time Round
Diffstat:
Msrc/classic-lite.c | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/classic-lite.c b/src/classic-lite.c @@ -198,10 +198,17 @@ color_from_tuple(Tuple *tuple) { * DISPLAY PRIMITIVES * **********************/ +#ifdef PBL_RECT static const GPathInfo minute_hand_path_points = QUAD_PATH_POINTS(15, 6, -72, -6); static const GPathInfo hour_hand_path_points = QUAD_PATH_POINTS(15, 7, -50, -7); +#else +static const GPathInfo minute_hand_path_points + = QUAD_PATH_POINTS(17, 7, -83, -7); +static const GPathInfo hour_hand_path_points + = QUAD_PATH_POINTS(17, 8, -58, -8); +#endif static const GPathInfo bluetooth_logo_points = { 7, (GPoint[]) { { -3, -3 }, { 3, 3 },