Bugfix for En_getaveragepatternvalue()
Fixes a bug where 0 was not considered to be a valid pattern index.
This commit is contained in:
@@ -4525,7 +4525,7 @@ int DLLEXPORT EN_getaveragepatternvalue(EN_Project p, int index, double *value)
|
||||
|
||||
*value = 0.0;
|
||||
if (!p->Openflag) return 102;
|
||||
if (index < 1 || index > net->Npats) return 205;
|
||||
if (index < 0 || index > net->Npats) return 205;
|
||||
for (i = 0; i < Pattern[index].Length; i++)
|
||||
{
|
||||
*value += (double)Pattern[index].F[i];
|
||||
|
||||
Reference in New Issue
Block a user