﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1276	_TicksToTime() displayed seconds increment at wrong time	Andrew	Valik	"In the _TicksToTime function the value for Seconds is derived by this line...
{{{
$iSecs = Round(Mod($iTicks, 60))
}}}
causing the displayed seconds to increment at 500 ms.  I believe the code should be...

{{{
$iSecs = Int(Mod($iTicks, 60))
}}}
so seconds only increments at 1000 ms (like a normal clock)."	Bug	closed	3.3.1.6	AutoIt	3.3.0.0	None	Fixed	_TicksToTime	
