From d6663d84c64cbb29292599c13cfd787bf0b15507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Lemaire?= Date: Tue, 28 May 2013 16:25:29 +0200 Subject: [PATCH] Small fix --- src/testing/test_render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testing/test_render.c b/src/testing/test_render.c index 0e3e25b..e0d4751 100644 --- a/src/testing/test_render.c +++ b/src/testing/test_render.c @@ -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; }