TINYGL: Formatting fixup

This commit is contained in:
Stefano Musumeci 2014-07-16 14:04:14 +02:00
parent 85940f353d
commit e4e0b09059

View File

@ -365,7 +365,7 @@ void BlitImage::tglBlitRotoScale(int dstX, int dstY, int width, int height, int
uint32 invAngle = 360 - (rotation % 360);
float invCos = cos(invAngle * M_PI / 180.0f);
float invSin = sin(invAngle * M_PI / 180.0f );
float invSin = sin(invAngle * M_PI / 180.0f);
int icosx = (int)(invCos * (65536.0f * srcWidth / width));
int isinx = (int)(invSin * (65536.0f * srcWidth / width));