diff options
Diffstat (limited to 'examples/cube/ex_cube.c')
-rw-r--r-- | examples/cube/ex_cube.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/cube/ex_cube.c b/examples/cube/ex_cube.c index 26e6b71..2cd0a51 100644 --- a/examples/cube/ex_cube.c +++ b/examples/cube/ex_cube.c @@ -18,10 +18,10 @@ extern core g_core; // Scene / light setup const vec3 pointlight_positions[4] = { - { -10.0, 10.0, 10.0}, - { 10.0, 10.0, 10.0}, - { -10.0, -10.0, 10.0}, - { 10.0, -10.0, 10.0}, + { -10.0, 10.0, 10.0 }, + { 10.0, 10.0, 10.0 }, + { -10.0, -10.0, 10.0 }, + { 10.0, -10.0, 10.0 }, }; point_light point_lights[4]; |