Skip to content

Commit

Permalink
Fix month. Damn you, tm.
Browse files Browse the repository at this point in the history
  • Loading branch information
DouweM committed Apr 14, 2013
1 parent c1aec40 commit 2517307
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Designed by Jnm, who posted it in the ["Watch-face ideas" thread](http://forums.

Based on the display of the [Freebox Revolution](http://www.free.fr/adsl/freebox-revolution.html).

[Download here](https://github.com/DouweM/PebbleRevolution/raw/master/releases/Revolution-1.0.pbw)
[Download here](https://github.com/DouweM/PebbleRevolution/raw/master/releases/Revolution-1.1.pbw)

![Photo](http://d.pr/i/LBSq+)
Binary file added releases/Revolution-1.1.pbw
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Revolution.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#define MY_UUID { 0xA1, 0x23, 0x08, 0x61, 0xD4, 0xEB, 0x4F, 0x6E, 0xA2, 0xD0, 0xEA, 0xA2, 0xA0, 0x77, 0x97, 0xDD }
PBL_APP_INFO(MY_UUID,
"Revolution", "Douwe Maan",
1, 0, /* App version */
1, 1, /* App version */
RESOURCE_ID_IMAGE_MENU_ICON,
APP_INFO_WATCH_FACE);

Expand Down Expand Up @@ -318,7 +318,7 @@ void display_date_value(int value, int part_number) {

void display_date(PblTm *tick_time) {
display_date_value(tick_time->tm_mday, 0);
display_date_value(tick_time->tm_mon, 1);
display_date_value(tick_time->tm_mon + 1, 1);
}

// Year
Expand Down

0 comments on commit 2517307

Please sign in to comment.