From 7c25d83f1cc4c7db2d2d3f4506525dd056b885e8 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 29 Aug 2014 12:14:27 +0200 Subject: Tag: use SignedSongTime for the song duration --- src/SongSave.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/SongSave.cxx') diff --git a/src/SongSave.cxx b/src/SongSave.cxx index 8b532bedd..895e9805b 100644 --- a/src/SongSave.cxx +++ b/src/SongSave.cxx @@ -100,7 +100,7 @@ song_load(TextFile &file, const char *uri, if ((type = tag_name_parse(line)) != TAG_NUM_OF_ITEM_TYPES) { tag.AddItem(type, value); } else if (strcmp(line, "Time") == 0) { - tag.SetTime(atoi(value)); + tag.SetDuration(SignedSongTime::FromS(atof(value))); } else if (strcmp(line, "Playlist") == 0) { tag.SetHasPlaylist(strcmp(value, "yes") == 0); } else if (strcmp(line, SONG_MTIME) == 0) { -- cgit v1.2.3