From eefe832785407c387e71aba476091e805eecc3f4 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sun, 16 Aug 2009 17:35:36 +0000 Subject: Save a bit of binsize by using a more suitable datatype and making the array static. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22349 a1c6a512-1295-4272-9138-f99709370657 --- apps/screens.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/screens.c b/apps/screens.c index 4ec35f9f57..76c8c42e64 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -517,7 +517,8 @@ bool set_time_screen(const char* title, struct tm *tm) unsigned int statusbar_height = 0; unsigned int separator_width, weekday_width; unsigned int prev_line_height; - int daysinmonth[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; + static unsigned char daysinmonth[] = + {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; unsigned char buffer[20]; struct viewport vp[NB_SCREENS]; int nb_lines; -- cgit v1.2.3