diff options
Diffstat (limited to 'pos.lua')
-rw-r--r-- | pos.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -168,7 +168,7 @@ end) -- Modifies positions `pos1` and `pos2` so that each component of `pos1` -- is less than or equal to its corresponding component of `pos2`, --- returning two new positions +-- returning the two positions. function areas:sortPos(pos1, pos2) if pos1.x > pos2.x then pos2.x, pos1.x = pos1.x, pos2.x |