mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
fix flipped inequality sign
Co-authored-by: Misa Elizabeth Kai <infoteddy@infoteddy.info>
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
2875af0492
commit
b572e2164b
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user