- workaround for infinite echo loop sea <-> sics

- ".CurrentValue" removed in evcontroller.c
This commit is contained in:
zolliker
2006-09-12 15:45:42 +00:00
parent 98a642d7ae
commit 87d81cf474
2 changed files with 8 additions and 2 deletions

View File

@ -1102,8 +1102,11 @@ static void ErrReport(pEVControl self)
iRet = EVCGetPos(self,pCon,&fPos);
if(iRet)
{
/*
sprintf(pBueffel,"%s.%s = %g",self->pName,"CurrentValue", fPos);
SCWrite(pCon,pBueffel,eValue);
*/
SCPrintf(pCon, eValue, "%s = %g", self->pName, fPos);
return 1;
}
return 0;