Which car/track combo causes the error? does race lap count influence it?
MSHT *int_MSHT(int &t)
{
MSHT *time = new MSHT;
time->Thousandths=0;
time->Hundredths=(t/100 - (t/100/100)*100);
time->Minutes=(t/10000)/60;
time->Seconds=(t/10000) % 60;
return time;
}