Correct computation of what AHI values are considered "close"

This commit is contained in:
Seeker4 2019-08-01 12:55:21 -07:00
parent bd3c078dfb
commit 3c425d66e4

View File

@ -216,7 +216,7 @@ QString Welcome::GenerateCPAPHTML()
comp = under;
} else if ((ahi > ahidays) && ((ahi - ahidays) >= 0.1)) {
comp = over;
} else if ((fabs(ahi > ahidays) >= 0.01) ) {
} else if ((fabs(ahi - ahidays) >= 0.01) ) {
comp = close;
} else {
comp = equal;