Skip to content

Commit

Permalink
AGI: Fix Broken Predictive Text Input.
Browse files Browse the repository at this point in the history
This was a regression introduced by
4b2f92b (r55135)
  • Loading branch information
digitall committed Jun 8, 2011
1 parent d6e23ac commit dbaf9e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion engines/agi/predictive.cpp
Expand Up @@ -573,8 +573,10 @@ bool AgiEngine::matchWord() {
hi = line - 1;
else if (cmpVal < 0)
lo = line + 1;
else
else {
hi = line;
break;
}
}

_currentWord.clear();
Expand Down

0 comments on commit dbaf9e4

Please sign in to comment.