core/tags/track: Add a space before title

I noticed that tracks beginning with a number were getting combined with
the seconds field, creating an inaccurate seconds count and modifying
the title at the same time.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2015-10-14 16:39:24 -04:00
parent b1ef40679b
commit 08bef63918
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ void Track :: read(file &file)
void Track :: write(file &file)
{
file_writef(&file, "%u %u %u %u %u %u %u %u %u %u", _library->index(),
file_writef(&file, "%u %u %u %u %u %u %u %u %u %u ", _library->index(),
_artist->index(), _album->index(), _genre->index(), _track,
_date.year, _date.month, _date.day, _count, _length);
GenericTag :: write(file);