diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-03-27 13:06:54 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-03-27 13:06:54 +0000 |
commit | 3ca32bb06dfeac737be4678e6a69decfc4d9a509 (patch) | |
tree | 27d79dc0636a86a4d74bd06a5d36105d3c6ce5bf /apps/tree.c | |
parent | 31ce988fab907b688be67844394c9884547d80b2 (diff) |
Fixed a crash when selecting database mode in the menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9285 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
-rw-r--r-- | apps/tree.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/tree.c b/apps/tree.c index 5efacd5993..0df5baefd3 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -690,6 +690,8 @@ static bool dirbrowse(void) restore = true; id3db = check_changed_id3mode(id3db); + if(id3db) + reload_dir = true; } else /* use it as a quick exit instead */ exit_func = true; |