Skip to content

Commit

Permalink
For Flags allocate one slot less
Browse files Browse the repository at this point in the history
  • Loading branch information
atupone committed Apr 18, 2024
1 parent 02d200c commit c97b510
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/geometry/FlagSceneNode.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ class WaveGeometry
float ripple2;

GLuint glList;
GLfloat verts[(maxChunks + 1) * 2][3];
GLfloat txcds[(maxChunks + 1) * 2][2];
GLfloat verts[maxChunks * 2][3];
GLfloat txcds[maxChunks * 2][2];
};


Expand Down

0 comments on commit c97b510

Please sign in to comment.