Fix the touch calibration bug

Bug: 5629373
Change-Id: Iacc746e1cc97bf305e1f287cf7431b7115607eeb
main
satok 2011-11-17 15:46:32 +09:00
parent 2549ce275a
commit 554fdd21a1
1 changed files with 3 additions and 0 deletions

View File

@ -758,6 +758,9 @@ int Correction::RankingAlgorithm::calculateFinalFreq(const int inputIndex, const
// \ .
// C \ .
// 0 R1 R2
if (factor <= 0) {
return -1;
}
multiplyRate((int)(factor * 100), &finalFreq);
} else if (squaredDistance == PROXIMITY_CHAR_WITHOUT_DISTANCE_INFO) {
multiplyRate(WORDS_WITH_PROXIMITY_CHARACTER_DEMOTION_RATE, &finalFreq);