1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-11-25 22:18:34 +01: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: case Direction2.DownLeft:
return new Point(-1, 1); return new Point(-1, 1);
case Direction2.UpLeft: case Direction2.UpLeft:
return new Point(-1, 1); return new Point(-1, -1);
default: default:
return Point.Zero; return Point.Zero;
} }