summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-10-28 23:31:45 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-10-28 23:31:45 +0000
commitdb8d79db7ef946b3d531f3c2cfa55dfdc35c7793 (patch)
treea5faed61d92bfd131377c0dcbb4cac6372c55f00
parentd789e418847a527ffcfb90ed3443fb05efa2da04 (diff)
downloadrockbox-db8d79db7ef946b3d531f3c2cfa55dfdc35c7793.tar.gz
rockbox-db8d79db7ef946b3d531f3c2cfa55dfdc35c7793.zip
Remove unused #define and correct comment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23391 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/filetypes.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c
index b442a9ec2c..593085cbd4 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -130,12 +130,11 @@ void tree_get_filetypes(const struct filetype** types, int* count)
130} 130}
131 131
132/* mask for dynamic filetype info in attribute */ 132/* mask for dynamic filetype info in attribute */
133#define FILETYPES_MASK 0xFF00
134#define ROCK_EXTENSION "rock" 133#define ROCK_EXTENSION "rock"
135 134
136struct file_type { 135struct file_type {
137 int icon; /* the icon which shall be used for it, NOICON if unknown */ 136 int icon; /* the icon which shall be used for it, NOICON if unknown */
138 unsigned char attr; /* FILETYPES_MASK >> 8 */ 137 unsigned char attr; /* FILE_ATTR_MASK >> 8 */
139 char* plugin; /* Which plugin to use, NULL if unknown, or builtin */ 138 char* plugin; /* Which plugin to use, NULL if unknown, or builtin */
140 char* extension; /* NULL for none */ 139 char* extension; /* NULL for none */
141}; 140};