mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 01:29:43 +01:00
fix flipped inequality sign
Co-authored-by: Misa Elizabeth Kai <infoteddy@infoteddy.info>
This commit is contained in:
parent
2875af0492
commit
b572e2164b
1 changed files with 1 additions and 1 deletions
|
@ -2307,7 +2307,7 @@ void mapclass::setregion(int id, int rx, int ry, int rx2, int ry2)
|
|||
if (INBOUNDS_ARR(id, region) && id > 0)
|
||||
{
|
||||
// swap the variables if they're entered in the wrong order
|
||||
if (rx2 > rx)
|
||||
if (rx2 < rx)
|
||||
{
|
||||
int temp = rx;
|
||||
rx = rx2;
|
||||
|
|
Loading…
Reference in a new issue