From f2061599d472264051c47bb323de156d637d3afe Mon Sep 17 00:00:00 2001 From: Paul Louden Date: Mon, 18 Jun 2007 22:07:38 +0000 Subject: Fix new bug caused by my last commit. Since there was no apparent binary saving of the short, back to long since we need it signed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13668 a1c6a512-1295-4272-9138-f99709370657 --- apps/filetypes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/filetypes.c b/apps/filetypes.c index 303d486..89933c8 100644 --- a/apps/filetypes.c +++ b/apps/filetypes.c @@ -126,7 +126,7 @@ static struct file_type filetypes[MAX_FILETYPES]; static int custom_filetype_icons[MAX_FILETYPES]; static bool custom_icons_loaded = false; #ifdef HAVE_LCD_COLOR -static fb_data custom_colors[MAX_FILETYPES]; +static int custom_colors[MAX_FILETYPES]; #endif static int filetype_count = 0; static unsigned char heighest_attr = 0; -- cgit v1.1