Fix f66baa44: for-loop is no longer increasing "i"

During conversion it was overlooked that the for-loop used to do
this. Oops.
This commit is contained in:
Patric Stout 2020-12-26 13:54:00 +01:00 committed by Charles Pigott
parent f2d78b11dd
commit 8fa2a67f6b
1 changed files with 2 additions and 0 deletions

View File

@ -92,6 +92,8 @@ struct AIListWindow : public Window {
this->selected = i; this->selected = i;
break; break;
} }
i++;
} }
} }
} }