ref: gl: fixed crash when opening "Customize" menu
This commit is contained in:
parent
3488d4e65f
commit
3bd8ad50d2
1 changed files with 3 additions and 1 deletions
|
@ -3315,8 +3315,10 @@ void R_DrawWorld( void )
|
||||||
// paranoia issues: when gl_renderer is "0" we need have something valid for currententity
|
// paranoia issues: when gl_renderer is "0" we need have something valid for currententity
|
||||||
// to prevent crashing until HeadShield drawing.
|
// to prevent crashing until HeadShield drawing.
|
||||||
RI.currententity = gEngfuncs.GetEntityByIndex( 0 );
|
RI.currententity = gEngfuncs.GetEntityByIndex( 0 );
|
||||||
RI.currentmodel = RI.currententity->model;
|
if( !RI.currententity )
|
||||||
|
return;
|
||||||
|
|
||||||
|
RI.currentmodel = RI.currententity->model;
|
||||||
if( !RI.drawWorld || RI.onlyClientDraw )
|
if( !RI.drawWorld || RI.onlyClientDraw )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue