diff options
author | Michael Hohmuth <sideral@rockbox.org> | 2011-02-28 23:47:11 +0000 |
---|---|---|
committer | Michael Hohmuth <sideral@rockbox.org> | 2011-02-28 23:47:11 +0000 |
commit | b016ab9d8654ec3cfdee7a9dbe9966142ce37488 (patch) | |
tree | c6a4d0bf1800efa66195144fada8e065bb9e037c /apps | |
parent | 3db9fd199f880bad9a3ab3adb2906feed3ec77b0 (diff) |
DB import: Correctly import previously exported resume offsets
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29469 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/tagcache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index 42ef2d3ef0..3944fcb6bc 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -3390,8 +3390,8 @@ static int parse_changelog_line(int line_n, const char *buf, void *parameters) char tag_data[TAG_MAXLEN+32]; int idx_id; long masterfd = (long)parameters; - const int import_tags[] = { tag_playcount, tag_rating, tag_playtime, tag_lastplayed, - tag_commitid }; + const int import_tags[] = { tag_playcount, tag_rating, tag_playtime, + tag_lastplayed, tag_commitid, tag_lastoffset }; int i; (void)line_n; |