R_DrawPlanes: dont increment garbage ptr
This commit is contained in:
parent
29002117e1
commit
b25464e222
1 changed files with 2 additions and 2 deletions
|
|
@ -761,7 +761,7 @@ void R_DrawSkyPlanes(void)
|
|||
|
||||
srb2::ThreadPool::Sema tp_sema;
|
||||
srb2::g_main_threadpool->begin_sema();
|
||||
for (i = 0; i < MAXVISPLANES; i++, pl++)
|
||||
for (i = 0; i < MAXVISPLANES; i++)
|
||||
{
|
||||
for (pl = visplanes[i]; pl; pl = pl->next)
|
||||
{
|
||||
|
|
@ -806,7 +806,7 @@ void R_DrawPlanes(void)
|
|||
|
||||
srb2::ThreadPool::Sema tp_sema;
|
||||
srb2::g_main_threadpool->begin_sema();
|
||||
for (i = 0; i < MAXVISPLANES; i++, pl++)
|
||||
for (i = 0; i < MAXVISPLANES; i++)
|
||||
{
|
||||
for (pl = visplanes[i]; pl; pl = pl->next)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue