mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Arg, gcc buildfix.
This commit is contained in:
parent
54e2b2b598
commit
4f6b9c1fd2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue