Fix display of >=60 minute songs

This commit is contained in:
Přemysl Eric Janouch 2016-10-04 06:17:27 +02:00
parent 1e39ae52c5
commit 93e76a2221
Signed by: p
GPG Key ID: B715679E3A361BE6
1 changed files with 1 additions and 1 deletions

View File

@ -752,7 +752,7 @@ static void
app_write_time (struct row_buffer *buf, int seconds, chtype attrs)
{
int minutes = seconds / 60; seconds %= 60;
int hours = minutes / 60; hours %= 60;
int hours = minutes / 60; minutes %= 60;
struct str s;
str_init (&s);