Cleanup: style/spelling

This commit is contained in:
2016-03-14 13:21:13 +11:00
parent 34fe03c7f2
commit 0024768f88
5 changed files with 9 additions and 9 deletions

View File

@@ -3191,8 +3191,8 @@ void do_sky_tex(
}
break;
case TEXCO_EQUIRECTMAP:
tempvec[0]= -atan2f(lo[2], lo[0]) / M_PI;
tempvec[1]= atan2f(lo[1], hypot(lo[0], lo[2])) / M_PI_2;
tempvec[0]= -atan2f(lo[2], lo[0]) / (float)M_PI;
tempvec[1]= atan2f(lo[1], hypot(lo[0], lo[2])) / (float)M_PI_2;
tempvec[2]= 0.0f;
co= tempvec;
break;