mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
This can overflow
git-svn-id: https://svn.eduke32.com/eduke32@7949 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
0ffc89fbb7
commit
2ef83e4a71
1 changed files with 2 additions and 2 deletions
|
@ -85,7 +85,7 @@ static int32_t getvox(int32_t x, int32_t y, int32_t z)
|
||||||
{
|
{
|
||||||
z += x*yzsiz + y*voxsiz.z;
|
z += x*yzsiz + y*voxsiz.z;
|
||||||
|
|
||||||
for (x=vcolhashead[(z*214013)&vcolhashsizm1]; x>=0; x=vcol[x].n)
|
for (x=vcolhashead[(z*214013LL)&vcolhashsizm1]; x>=0; x=vcol[x].n)
|
||||||
if (vcol[x].p == z)
|
if (vcol[x].p == z)
|
||||||
return vcol[x].c;
|
return vcol[x].c;
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@ static void putvox(int32_t x, int32_t y, int32_t z, int32_t col)
|
||||||
|
|
||||||
z += x*yzsiz + y*voxsiz.z;
|
z += x*yzsiz + y*voxsiz.z;
|
||||||
|
|
||||||
vcol[vnum].p = z; z = (z*214013)&vcolhashsizm1;
|
vcol[vnum].p = z; z = (z*214013LL)&vcolhashsizm1;
|
||||||
vcol[vnum].c = col;
|
vcol[vnum].c = col;
|
||||||
vcol[vnum].n = vcolhashead[z]; vcolhashead[z] = vnum++;
|
vcol[vnum].n = vcolhashead[z]; vcolhashead[z] = vnum++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue