gfx3d.cpp: correct memset size for vertlists and polylists

This commit is contained in:
riccardom 2012-03-18 16:39:47 +00:00
parent 0093cc9648
commit 8fecdad891
1 changed files with 2 additions and 2 deletions

View File

@ -498,8 +498,8 @@ void gfx3d_reset()
control = 0;
drawPending = FALSE;
flushPending = FALSE;
memset(polylists, 0, sizeof(polylists));
memset(vertlists, 0, sizeof(vertlists));
memset(polylists, 0, sizeof(POLYLIST)*2);
memset(vertlists, 0, sizeof(VERTLIST)*2);
gfx3d.state.invalidateToon = true;
listTwiddle = 1;
twiddleLists();