bug fix (driving / counting status was not correct)

This commit is contained in:
zolliker
2005-04-12 13:13:03 +00:00
parent dc389b38c9
commit 9238129619

View File

@ -450,11 +450,11 @@
}
break;
case HWBusy:
if(pCountInt != NULL)
if(pDrivInt != NULL)
{
isDriving = 1;
}
if(pDrivInt == NULL)
else if(pCountInt != NULL)
{
isCounting = 1;
}