Small fix

This commit is contained in:
Michaël Lemaire 2013-05-28 16:25:29 +02:00 committed by Michael Lemaire
parent 7029d78365
commit d6663d84c6

View file

@ -20,7 +20,7 @@ static Color _postProcessFragment(Renderer* renderer, Vector3 location, void* da
{
z = 0.2 + z;
}
if (x > 0.1 ^ z > 0.1)
if ((x > 0.1) ^ (z > 0.1))
{
return COLOR_WHITE;
}