summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
authorMagnus Holmgren <magnushol@gmail.com>2011-05-04 18:33:12 +0000
committerMagnus Holmgren <magnushol@gmail.com>2011-05-04 18:33:12 +0000
commitc2ff646b7870e34cfe97bf76c3689652f909b8e4 (patch)
treed624002222555512dff685e763e42c86b2e00315 /apps/tree.c
parentffee0b5e94e565f94b7a312bcbee12d932b6e332 (diff)
downloadrockbox-c2ff646b7870e34cfe97bf76c3689652f909b8e4.tar.gz
rockbox-c2ff646b7870e34cfe97bf76c3689652f909b8e4.zip
Avoid false warnings of full dirs when the number of visible entries in a dir equals the limit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29823 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 44c4b92883..a9e6a6e840 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -390,7 +390,7 @@ static int update_dir(void)
390#ifdef HAVE_TAGCACHE 390#ifdef HAVE_TAGCACHE
391 !id3db && 391 !id3db &&
392#endif 392#endif
393 (tc.dirfull || tc.filesindir == tc.dircache_count) ) 393 tc.dirfull )
394 { 394 {
395 splash(HZ, ID2P(LANG_SHOWDIR_BUFFER_FULL)); 395 splash(HZ, ID2P(LANG_SHOWDIR_BUFFER_FULL));
396 } 396 }