diff options
| author | Paul Louden <paulthenerd@gmail.com> | 2007-06-18 22:07:38 +0000 |
|---|---|---|
| committer | Paul Louden <paulthenerd@gmail.com> | 2007-06-18 22:07:38 +0000 |
| commit | f2061599d472264051c47bb323de156d637d3afe (patch) | |
| tree | c1fb3a721861ac2ce9a156bb97c749fe652844b5 | |
| parent | 4cb1072ccef0e9958f926cf9d120ceb63c74e42a (diff) | |
| download | rockbox-f2061599d472264051c47bb323de156d637d3afe.zip rockbox-f2061599d472264051c47bb323de156d637d3afe.tar.gz rockbox-f2061599d472264051c47bb323de156d637d3afe.tar.bz2 rockbox-f2061599d472264051c47bb323de156d637d3afe.tar.xz | |
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
| -rw-r--r-- | apps/filetypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |