diff options
author | Max Kellermann <max@duempel.org> | 2014-08-29 12:14:27 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-29 13:20:58 +0200 |
commit | 7c25d83f1cc4c7db2d2d3f4506525dd056b885e8 (patch) | |
tree | b710e3f3d0f4edf7de0dcf6d61c823d8da7c9027 /src/TagPrint.cxx | |
parent | 8ce30c6a69a64f37a866541f66e3f242fe901f49 (diff) |
Tag: use SignedSongTime for the song duration
Diffstat (limited to 'src/TagPrint.cxx')
-rw-r--r-- | src/TagPrint.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TagPrint.cxx b/src/TagPrint.cxx index 636eedf4e..4937fa622 100644 --- a/src/TagPrint.cxx +++ b/src/TagPrint.cxx @@ -52,8 +52,8 @@ tag_print_values(Client &client, const Tag &tag) void tag_print(Client &client, const Tag &tag) { - if (tag.time >= 0) - client_printf(client, SONG_TIME "%i\n", tag.time); + if (!tag.duration.IsNegative()) + client_printf(client, SONG_TIME "%i\n", tag.duration.RoundS()); tag_print_values(client, tag); } |