DEBUGREC compile fix

scancodes-fix
Martin Plicht 2013-05-25 19:01:32 +02:00
parent 74eda19838
commit 251ef5169c
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ void C4Shape::Rotate(C4Real Angle, bool bUpdateVertices)
{
#ifdef DEBUGREC
C4RCRotVtx rc;
rc.x=x; rc.y=y; rc.wdt=Wdt; rc.hgt=Hgt; rc.r=iAngle;
rc.x=x; rc.y=y; rc.wdt=Wdt; rc.hgt=Hgt; rc.r=Angle;
int32_t i = 0;
for (; i<4; ++i)
{ rc.VtxX[i]=VtxX[i]; rc.VtxY[i]=VtxY[i]; }