From 4f6b9c1fd23911a5953e60091a79a2a1acaa52ea Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 29 Apr 2017 23:53:22 -0700 Subject: [PATCH] Arg, gcc buildfix. --- GPU/Software/TransformUnit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPU/Software/TransformUnit.cpp b/GPU/Software/TransformUnit.cpp index b980165b7c..c3184232cf 100644 --- a/GPU/Software/TransformUnit.cpp +++ b/GPU/Software/TransformUnit.cpp @@ -239,7 +239,7 @@ void TransformUnit::SubmitPrimitive(void* vertices, void* indices, GEPrimitiveTy VertexReader vreader(buf, vtxfmt, vertex_type); const int max_vtcs_per_prim = 3; - static VertexData data[max_vtcs_per_prim]{}; + static VertexData data[max_vtcs_per_prim]; // This is the index of the next vert in data (or higher, may need modulus.) static int data_index = 0;