From 3c425d66e4db3f7d75f7fa1ab685aac9c512b6d2 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Thu, 1 Aug 2019 12:55:21 -0700 Subject: [PATCH] Correct computation of what AHI values are considered "close" --- oscar/welcome.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar/welcome.cpp b/oscar/welcome.cpp index 02bd0b7f..b70df2d2 100644 --- a/oscar/welcome.cpp +++ b/oscar/welcome.cpp @@ -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;