1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Fix trailing whitespace in asteroids.

Required by release procedure.
This commit is contained in:
Jonas 'Sortie' Termansen 2012-09-10 12:29:30 +02:00
parent 50a2342a37
commit 068e855d15

View file

@ -254,7 +254,7 @@ bool InsideTriangle(const Vector& a, const Vector& b, const Vector& c,
const Vector& p)
{
return !AboveLine(a, b, p) && !AboveLine(b, c, p) && !AboveLine(c, a, p);
}
}
class Object;
class Actor;