Skip to content

Commit 824ca01

Browse files
authored
[CORE] Fix wrong loop increment in GeneralsMatcher::checkMatchesInUserMap() (#1080)
1 parent b5ebe63 commit 824ca01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Core/Tools/matchbot/generals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ void GeneralsMatcher::checkMatchesInUserMap(UserMap& userMap, int ladderID, int
626626
{
627627

628628
i5 = i4;
629-
for (++i5; i5 != userMap.end(); ++i3)
629+
for (++i5; i5 != userMap.end(); ++i5)
630630
{
631631
u5 = i5->second;
632632
if (u5->status != STATUS_WORKING)

0 commit comments

Comments
 (0)