summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
authorHardeep Sidhu <dyp@pobox.com>2002-10-11 09:14:30 +0000
committerHardeep Sidhu <dyp@pobox.com>2002-10-11 09:14:30 +0000
commit3735a15aca1c0c2649fb003f70ca6900d09a7731 (patch)
tree925209021a61f25341e65e8c6cae35cc98d49bc6 /apps/tree.c
parent88098be7e3f175129a8f9aa78c82206afa063694 (diff)
downloadrockbox-3735a15aca1c0c2649fb003f70ca6900d09a7731.tar.gz
rockbox-3735a15aca1c0c2649fb003f70ca6900d09a7731.zip
Retrieve the first_index from playlist when updating resume settings instead of incorrectly using start_index
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2575 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 5cd803adfe..b35e44861c 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -906,7 +906,8 @@ bool dirbrowse(char *root)
906 shuffled list in case shuffle is enabled */ 906 shuffled list in case shuffle is enabled */
907 global_settings.resume_index = start_index; 907 global_settings.resume_index = start_index;
908 global_settings.resume_offset = 0; 908 global_settings.resume_offset = 0;
909 global_settings.resume_first_index = start_index; 909 global_settings.resume_first_index =
910 playlist_first_index();
910 global_settings.resume_seed = seed; 911 global_settings.resume_seed = seed;
911 settings_save(); 912 settings_save();
912 } 913 }