[misc] Fix variable type. Fixes warning.

This commit is contained in:
Egor Pugin 2021-05-04 16:12:40 +03:00
parent 346b77c94e
commit 65118b2e3a

View File

@ -136,7 +136,7 @@ int Wordrec::angle_change(EDGEPT *point1, EDGEPT *point2, EDGEPT *point3) {
EDGEPT *Wordrec::pick_close_point(EDGEPT *critical_point, EDGEPT *vertical_point, int *best_dist) {
EDGEPT *best_point = nullptr;
int this_distance;
int found_better;
bool found_better;
do {
found_better = false;