Closed thaison1995 closed 1 year ago
if (pCubeMainTxtRecord->bOp = 0)-> the variable (bOpConditionsFulfilled) is always = false. while the function below has the condition variable (bOpConditionsFulfilled >= 1)
repair
.... switch (pCubeMainTxtRecord->nOp) { ... default: break; }
to
.... switch (pCubeMainTxtRecord->nOp) { ... default: { bOpConditionsFulfilled = true; break; } }
Thanks for the report!
if (pCubeMainTxtRecord->bOp = 0)-> the variable (bOpConditionsFulfilled) is always = false. while the function below has the condition variable (bOpConditionsFulfilled >= 1)
repair
to