From c2ff646b7870e34cfe97bf76c3689652f909b8e4 Mon Sep 17 00:00:00 2001 From: Magnus Holmgren Date: Wed, 4 May 2011 18:33:12 +0000 Subject: 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 --- apps/tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/tree.c') 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) #ifdef HAVE_TAGCACHE !id3db && #endif - (tc.dirfull || tc.filesindir == tc.dircache_count) ) + tc.dirfull ) { splash(HZ, ID2P(LANG_SHOWDIR_BUFFER_FULL)); } -- cgit v1.2.3