Seconds were not shown correctly.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17744 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-06-06 17:49:09 +00:00
parent 9bf8dbc829
commit 3c2793fcc1

View File

@ -224,7 +224,7 @@ TimeSlider::_TimeToString(bigtime_t useconds, BString& string)
useconds %= 60;
// seconds
uint32 seconds = useconds / 60;
uint32 seconds = useconds;
if (hours != 0 || minutes != 0)
string << " ";
if (seconds != 0)