diff options
author | James D. Smith <smithjd15@gmail.com> | 2021-09-15 17:33:41 -0600 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2021-09-17 21:42:05 -0400 |
commit | fcb9c068526cf1e565a05e6b6ccc50dc3e5ba0d5 (patch) | |
tree | f79396dc163111233d4edd175ce8535435536a1e /apps/tagcache.h | |
parent | cb0f4599e1557bf23267f4c3f2887513343c52b9 (diff) | |
download | rockbox-fcb9c068526cf1e565a05e6b6ccc50dc3e5ba0d5.tar.gz rockbox-fcb9c068526cf1e565a05e6b6ccc50dc3e5ba0d5.zip |
Database: Fix tag_albumartist; new tag_virt_canonicalartist.
Change-Id: I1d887f8a9d6690b8286407d2502432b0497cfeb9
Diffstat (limited to 'apps/tagcache.h')
-rw-r--r-- | apps/tagcache.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h index 0a240b15a0..b64571de40 100644 --- a/apps/tagcache.h +++ b/apps/tagcache.h @@ -31,10 +31,10 @@ tagcache.c and bump up the header version too. */ enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title, - tag_filename, tag_composer, tag_comment, tag_albumartist, tag_grouping, tag_year, - tag_discnumber, tag_tracknumber, tag_bitrate, tag_length, tag_playcount, tag_rating, - tag_playtime, tag_lastplayed, tag_commitid, tag_mtime, tag_lastelapsed, - tag_lastoffset, + tag_filename, tag_composer, tag_comment, tag_albumartist, tag_grouping, tag_year, + tag_discnumber, tag_tracknumber, tag_virt_canonicalartist, tag_bitrate, tag_length, + tag_playcount, tag_rating, tag_playtime, tag_lastplayed, tag_commitid, tag_mtime, + tag_lastelapsed, tag_lastoffset, /* Real tags end here, count them. */ TAG_COUNT, /* Virtual tags */ @@ -52,7 +52,7 @@ enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title, #define IDX_BUF_DEPTH 64 /* Tag Cache Header version 'TCHxx'. Increment when changing internal structures. */ -#define TAGCACHE_MAGIC 0x5443480f +#define TAGCACHE_MAGIC 0x54434810 /* Dump store/restore header version 'TCSxx'. */ #define TAGCACHE_STATEFILE_MAGIC 0x54435301 |