summaryrefslogtreecommitdiff
path: root/apps/filetypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/filetypes.h')
-rw-r--r--apps/filetypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/filetypes.h b/apps/filetypes.h
index 22668fd725..c5bccf4498 100644
--- a/apps/filetypes.h
+++ b/apps/filetypes.h
@@ -25,7 +25,7 @@
25 25
26int filetype_get_attr(char*); 26int filetype_get_attr(char*);
27#ifdef HAVE_LCD_BITMAP 27#ifdef HAVE_LCD_BITMAP
28char* filetype_get_icon(int); 28const char* filetype_get_icon(int);
29#else 29#else
30int filetype_get_icon(int); 30int filetype_get_icon(int);
31#endif 31#endif
@@ -37,7 +37,7 @@ int filetype_load_plugin(char*,char*);
37 37
38struct file_type { 38struct file_type {
39#ifdef HAVE_LCD_BITMAP 39#ifdef HAVE_LCD_BITMAP
40 unsigned char* icon; /* the icon which shall be used for it, NULL if unknown */ 40 const unsigned char* icon; /* the icon which shall be used for it, NULL if unknown */
41#else 41#else
42 int icon; /* the icon which shall be used for it, -1 if unknown */ 42 int icon; /* the icon which shall be used for it, -1 if unknown */
43#endif 43#endif