test_flip_page: Revert wrong initialize routine.

This commit is contained in:
Daniel Juyung Seo 2014-02-03 09:28:16 +09:00
parent c449cc96c6
commit 7074032bc9
1 changed files with 3 additions and 1 deletions

View File

@ -514,7 +514,9 @@ _state_update(State *st)
for (row = 0, gy = 0; gy < h; gy += gszh, row++)
{
Vertex3 vo[4] = { 0 };
Vertex3 vo[4];
memset(vo, 0, sizeof(vo));
if (b > 0) nn = num + st->slices_h - row - 1;
else nn = num + row;