Hm, I think this actually works correctly now

git-svn-id: https://svn.eduke32.com/eduke32@358 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2006-11-21 15:54:13 +00:00
parent 3884546474
commit 4de01782d3
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ float fogcalc(signed char shade, char vis)
// return(gvisibility/(shade<0?(shadetable[i]-glnegshadeoffset)*glnegshadescale:1)*(shade<0?1:shadetable[i]*glshadescale)*((float)((unsigned char)(vis<240?vis+16:vis-239))));
result = ((float)(vis<240?vis+16:0))+(shade>0?shade:(shade*2))/(vis>239?klabs(vis-256):1);
result = (float)((vis<240?vis+16:vis-240)+shade/(vis>239?(klabs(vis-256)):1));
if(result < 0.000) result = 0.000;
// if(result > 1.000) result = 1.000;