summaryrefslogtreecommitdiffstats
path: root/test/envs/opengl/light_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/envs/opengl/light_test.cpp')
-rw-r--r--test/envs/opengl/light_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/envs/opengl/light_test.cpp b/test/envs/opengl/light_test.cpp
index 227ca2a..1a52084 100644
--- a/test/envs/opengl/light_test.cpp
+++ b/test/envs/opengl/light_test.cpp
@@ -78,7 +78,7 @@ void Render(Gfx::CGLDevice *device)
worldMat.LoadIdentity();
device->SetTransform(Gfx::TRANSFORM_WORLD, worldMat);
- Gfx::VertexCol line[2] = { Gfx::VertexCol() };
+ Gfx::VertexCol line[2] = Gfx::VertexCol{ Gfx::VertexCol() };
for (int x = -40; x <= 40; ++x)
{
@@ -103,7 +103,7 @@ void Render(Gfx::CGLDevice *device)
}
- Gfx::VertexCol quad[6] = { Gfx::VertexCol() };
+ Gfx::VertexCol quad[6] = Gfx::VertexCol{ Gfx::VertexCol() };
quad[0].coord = Math::Vector(-1.0f, -1.0f, 0.0f);
quad[1].coord = Math::Vector( 1.0f, -1.0f, 0.0f);