diff options
author | Steve Bavin <pondlife@pondlife.me> | 2007-06-07 11:29:45 +0000 |
---|---|---|
committer | Steve Bavin <pondlife@pondlife.me> | 2007-06-07 11:29:45 +0000 |
commit | a1f0a83a012f01cdb39025519c95df664399deed (patch) | |
tree | dcec5deedd889e986e077f239c0dfecfc0755700 | |
parent | ca5ee3cc727004208c1bd06b90adfaf4e19ece45 (diff) |
Forgot this one. We should maybe use enums more...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13587 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/filetree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/filetree.c b/apps/filetree.c index aea81a71d4..90b234a605 100644 --- a/apps/filetree.c +++ b/apps/filetree.c @@ -307,7 +307,7 @@ int ft_load(struct tree_context* c, const char* tempdir) /* If thumbnail talking is enabled, make an extra run to mark files with associated thumbnails, so we don't do unsuccessful spinups later. */ - if (global_settings.talk_file == 3) + if (global_settings.talk_file_clip) check_file_thumbnails(c); /* map .talk to ours */ return 0; |