mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-20 12:00:47 +00:00
ref_soft: Try fix crash on changelevel
This commit is contained in:
parent
9fbb8a8201
commit
7f1491f884
10
r_main.c
10
r_main.c
@ -208,7 +208,7 @@ static int R_TransEntityCompare( const cl_entity_t **a, const cl_entity_t **b )
|
|||||||
rendermode2 = R_GetEntityRenderMode( ent2 );
|
rendermode2 = R_GetEntityRenderMode( ent2 );
|
||||||
|
|
||||||
// sort by distance
|
// sort by distance
|
||||||
if( ent1->model->type != mod_brush || rendermode1 != kRenderTransAlpha )
|
if( ent1->model && ent1->model->type != mod_brush || rendermode1 != kRenderTransAlpha )
|
||||||
{
|
{
|
||||||
VectorAverage( ent1->model->mins, ent1->model->maxs, org );
|
VectorAverage( ent1->model->mins, ent1->model->maxs, org );
|
||||||
VectorAdd( ent1->origin, org, org );
|
VectorAdd( ent1->origin, org, org );
|
||||||
@ -217,7 +217,7 @@ static int R_TransEntityCompare( const cl_entity_t **a, const cl_entity_t **b )
|
|||||||
}
|
}
|
||||||
else dist1 = 1000000000;
|
else dist1 = 1000000000;
|
||||||
|
|
||||||
if( ent2->model->type != mod_brush || rendermode2 != kRenderTransAlpha )
|
if( ent1->model && ent2->model->type != mod_brush || rendermode2 != kRenderTransAlpha )
|
||||||
{
|
{
|
||||||
VectorAverage( ent2->model->mins, ent2->model->maxs, org );
|
VectorAverage( ent2->model->mins, ent2->model->maxs, org );
|
||||||
VectorAdd( ent2->origin, org, org );
|
VectorAdd( ent2->origin, org, org );
|
||||||
@ -1824,6 +1824,12 @@ void R_NewMap (void)
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
r_viewcluster = -1;
|
r_viewcluster = -1;
|
||||||
|
|
||||||
|
tr.draw_list->num_solid_entities = 0;
|
||||||
|
tr.draw_list->num_trans_entities = 0;
|
||||||
|
tr.draw_list->num_beam_entities = 0;
|
||||||
|
tr.draw_list->num_edge_entities = 0;
|
||||||
|
|
||||||
R_ClearDecals(); // clear all level decals
|
R_ClearDecals(); // clear all level decals
|
||||||
R_StudioResetPlayerModels();
|
R_StudioResetPlayerModels();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user