1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-31 20:33:38 +02:00

fixed upleft

This commit is contained in:
Ellpeck 2019-09-04 15:38:51 +02:00
parent 21dce9d60a
commit 032923c660

View file

@ -53,7 +53,7 @@ namespace MLEM.Misc {
case Direction2.DownLeft:
return new Point(-1, 1);
case Direction2.UpLeft:
return new Point(-1, 1);
return new Point(-1, -1);
default:
return Point.Zero;
}