forked from len0rd/rockbox
Renamed embed_cuesheet struct to embedded_cuesheet.
A bit of a compromise; though the struct has been renamed, the field within the mp3entry struct is still called embed_cuesheet. This is for consistency with the embed_albumart field. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31375 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1b781df59c
commit
1a4aea3ad8
1 changed files with 2 additions and 2 deletions
|
|
@ -225,7 +225,7 @@ enum character_encoding {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* cache embedded cuesheet details */
|
/* cache embedded cuesheet details */
|
||||||
struct embed_cuesheet {
|
struct embedded_cuesheet {
|
||||||
bool present;
|
bool present;
|
||||||
int size;
|
int size;
|
||||||
off_t pos;
|
off_t pos;
|
||||||
|
|
@ -322,7 +322,7 @@ struct mp3entry {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Cuesheet support */
|
/* Cuesheet support */
|
||||||
struct embed_cuesheet embed_cuesheet;
|
struct embedded_cuesheet embed_cuesheet;
|
||||||
struct cuesheet *cuesheet;
|
struct cuesheet *cuesheet;
|
||||||
|
|
||||||
/* Musicbrainz Track ID */
|
/* Musicbrainz Track ID */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue