Skip to content

Commit

Permalink
fix flipped inequality sign
Browse files Browse the repository at this point in the history
Co-authored-by: Misa Elizabeth Kai <infoteddy@infoteddy.info>
  • Loading branch information
mothbeanie and InfoTeddy committed Nov 4, 2024
1 parent b572e21 commit d8a8e44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop_version/src/Map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2313,7 +2313,7 @@ void mapclass::setregion(int id, int rx, int ry, int rx2, int ry2)
rx = rx2;
rx2 = temp;
}
if (ry2 > ry)
if (ry2 < ry)
{
int temp = ry;
ry = ry2;
Expand Down

0 comments on commit d8a8e44

Please sign in to comment.