diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-10-21 06:42:52 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-10-21 06:42:52 +0000 |
| commit | 616971c71eaee14cc9e16fe105d34c202babbf7c (patch) | |
| tree | 2b0497996057dedbeeac5a5ec7ac717087ed3f5b /apps/filetypes.c | |
| parent | 5eac0108f973bc5a132807775f9815b789e0c787 (diff) | |
| download | rockbox-616971c71eaee14cc9e16fe105d34c202babbf7c.zip rockbox-616971c71eaee14cc9e16fe105d34c202babbf7c.tar.gz rockbox-616971c71eaee14cc9e16fe105d34c202babbf7c.tar.bz2 rockbox-616971c71eaee14cc9e16fe105d34c202babbf7c.tar.xz | |
remove the seelection_size param from the info init call to hopefully decrease the bin size a bit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15237 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetypes.c')
| -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 3f1fa7d..5c74103 100644 --- a/apps/filetypes.c +++ b/apps/filetypes.c @@ -487,7 +487,7 @@ int filetype_list_viewers(const char* current_file) return PLUGIN_OK; } #endif - simplelist_info_init(&info, str(LANG_ONPLAY_OPEN_WITH), 1, count, &data); + simplelist_info_init(&info, str(LANG_ONPLAY_OPEN_WITH), count, &data); info.action_callback = openwith_action_callback; info.get_name = openwith_get_name; info.get_icon = openwith_get_icon; |