aboutsummaryrefslogtreecommitdiffstats
path: root/src/TagSave.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/TagSave.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TagSave.cxx b/src/TagSave.cxx
index c47d778d3..107aca7db 100644
--- a/src/TagSave.cxx
+++ b/src/TagSave.cxx
@@ -27,8 +27,8 @@
void
tag_save(BufferedOutputStream &os, const Tag &tag)
{
- if (tag.time >= 0)
- os.Format(SONG_TIME "%i\n", tag.time);
+ if (!tag.duration.IsNegative())
+ os.Format(SONG_TIME "%f\n", tag.duration.ToDoubleS());
if (tag.has_playlist)
os.Format("Playlist: yes\n");