mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-27 14:42:07 +00:00
fix an oopsie with low-copy and software clients
This commit is contained in:
parent
6a51021f86
commit
13d67a4c67
1 changed files with 3 additions and 0 deletions
|
@ -154,6 +154,9 @@ CL_EntFromBaseline (entity_state_t *es, entity_t *ent, int ind)
|
||||||
cl_entity_model_states[ind].model = ent->model;
|
cl_entity_model_states[ind].model = ent->model;
|
||||||
cl_entity_model_states[ind].skinnum = ent->skinnum;
|
cl_entity_model_states[ind].skinnum = ent->skinnum;
|
||||||
CL_SetColormap (ent, es->colormap - 1);
|
CL_SetColormap (ent, es->colormap - 1);
|
||||||
|
} else {
|
||||||
|
ent->colormap = vid.colormap8;
|
||||||
|
ent->skin = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue