diff options
author | Yoshihisa Uchida <uchida@rockbox.org> | 2010-05-12 12:41:31 +0000 |
---|---|---|
committer | Yoshihisa Uchida <uchida@rockbox.org> | 2010-05-12 12:41:31 +0000 |
commit | f2df42ee91ee61f793dac4844255cb4ec9049621 (patch) | |
tree | c026fab45fdf6cc5ca4d670156aa7909a35ce048 /apps | |
parent | aa1e471f9aa05f56edd00a0bf70bb416efa0529f (diff) | |
download | rockbox-f2df42ee91ee61f793dac4844255cb4ec9049621.tar.gz rockbox-f2df42ee91ee61f793dac4844255cb4ec9049621.zip |
fix: the problem to which new filetypes cannot be registered.
64 types can be registered more.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25969 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/filetypes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c index 1449f168e6..6548d46fdb 100644 --- a/apps/filetypes.c +++ b/apps/filetypes.c | |||
@@ -42,9 +42,9 @@ | |||
42 | 42 | ||
43 | /* max filetypes (plugins & icons stored here) */ | 43 | /* max filetypes (plugins & icons stored here) */ |
44 | #if CONFIG_CODEC == SWCODEC | 44 | #if CONFIG_CODEC == SWCODEC |
45 | #define MAX_FILETYPES 128 | 45 | #define MAX_FILETYPES 192 |
46 | #else | 46 | #else |
47 | #define MAX_FILETYPES 64 | 47 | #define MAX_FILETYPES 128 |
48 | #endif | 48 | #endif |
49 | 49 | ||
50 | /* a table for the know file types */ | 50 | /* a table for the know file types */ |