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,12 +450,12 @@
}
break;
case HWBusy:
if(pCountInt != NULL)
if(pDrivInt != NULL)
{
isDriving = 1;
}
if(pDrivInt == NULL)
{
else if(pCountInt != NULL)
{
isCounting = 1;
}
self->iStatus = DEVBUSY;