Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Commit

Permalink
Fixes and Stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre committed Feb 19, 2014
1 parent 77ed1fc commit 6913d57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ GFont font_date;
GFont font_time;

// Lists of days and months
const char *day_of_week[] = {"Lun", "Mar", "Mer", "Jeu", "Ven", "Sam", "Dim"};
const char *day_of_week[] = {"Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam"};
const char *month_of_year[] = { "Janv", "Fevr", "Mars", "Avr", "Mai", "Juin", "Juil", "Aout", "Sept", "Oct", "Nov", "Dec"};


Expand Down Expand Up @@ -93,7 +93,7 @@ static void handle_tick(struct tm *tick_time, TimeUnits units_changed)
bool night_time = false;
if (tick_time->tm_hour >= 19 || tick_time->tm_hour < 7)
night_time = true;
APP_LOG(APP_LOG_LEVEL_DEBUG_VERBOSE, "Set Weather icon. I do this every second, even though I don't fetch weather");
APP_LOG(APP_LOG_LEVEL_DEBUG_VERBOSE, "Set Weather icon. I do this every second, even though I don't fetch weather, and that's normal");
weather_layer_set_icon(weather_layer, weather_icon_for_condition(weather_data->condition, night_time));
}
}
Expand Down

0 comments on commit 6913d57

Please sign in to comment.