MoverRender.cpp
Code:
#ifdef __ARENA_SCORE
//Arena Score
if( GetWorld()->IsArena() && !strcmp( m_szName , g_ArenaScore.m_vecUserInfo[0].szName) )
{
pTexture = g_Neuz.m_pHeroIconArena;
if( pTexture )
{
long oldpointx=point.x;
long oldpointy=point.y;
point.y -= pTexture->m_size.cy + 5;
point.y = point.y+1;
//point.x = point.x + 15;
if(pGuild==NULL)
{
point.x -= cs1.cx + 27;
}
else
{
if( cs1.cx > cs2.cx )
{
if(this->GetGuild()->m_dwLogo!=NULL)
{
point.x -= cs1.cx + 52;
}
else
{
point.x -= cs1.cx + 27;
}
}
else
{
if(this->GetGuild()->m_dwLogo!=NULL)
{
point.x -= cs2.cx + 52;
}
else
{
point.x -= cs2.cx + 27;
}
}
}
pTexture->Render( &g_Neuz.m_2DRender, point );
point.x=oldpointx;
point.y=oldpointy;
}
}
#endif
Error:
MoverRender.cpp(2260) : error C2059: syntax error : 'if'
MoverRender.cpp(2261) : error C2143: syntax error : missing ';' before '{'
MoverRender.cpp(2261) : error C2447: '{' : missing function header (old-style formal list?)
MoverRender.cpp(2428) : fatal error C1004: unexpected end of file found






