mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-31 00:30:57 +00:00
Allow large skins in sw32.
Dirty rotten magic numbers :P
This commit is contained in:
parent
866c56c236
commit
ba7046ea09
1 changed files with 1 additions and 1 deletions
|
@ -376,7 +376,7 @@ sw32_D_PolysetCalcGradients (int skinwidth)
|
||||||
static void
|
static void
|
||||||
D_PolysetDrawSpans (spanpackage_t * pspanpackage)
|
D_PolysetDrawSpans (spanpackage_t * pspanpackage)
|
||||||
{
|
{
|
||||||
int i, j, texscantable[1024], *texscan;
|
int i, j, texscantable[2*MAX_LBM_HEIGHT], *texscan;
|
||||||
// LordHavoc: compute skin row table
|
// LordHavoc: compute skin row table
|
||||||
for (i = 0, j = -sw32_r_affinetridesc.skinheight * sw32_r_affinetridesc.skinwidth;
|
for (i = 0, j = -sw32_r_affinetridesc.skinheight * sw32_r_affinetridesc.skinwidth;
|
||||||
i < sw32_r_affinetridesc.skinheight*2;i++, j += sw32_r_affinetridesc.skinwidth)
|
i < sw32_r_affinetridesc.skinheight*2;i++, j += sw32_r_affinetridesc.skinwidth)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue