Fixed more compiler warnings

This commit is contained in:
Yaakov 2013-06-30 18:34:28 +10:00
parent b8f979fd04
commit 95f749f88d
3 changed files with 3 additions and 3 deletions

View file

@ -168,7 +168,7 @@ void CWeaponBugBait::Drop( const Vector &vecVelocity )
pSporeExplosion->m_flSpawnRate = 16.0f;
pSporeExplosion->m_flParticleLifetime = 0.5f;
pSporeExplosion->SetRenderColor( 0.0f, 0.5f, 0.25f, 0.15f );
pSporeExplosion->SetRenderColor( 0, 128, 64, 38 );
pSporeExplosion->m_flStartSize = 32;
pSporeExplosion->m_flEndSize = 48;

View file

@ -48,7 +48,7 @@ inline void DebugConnectMsg( int node1, int node2, const char *pszFormat, ... )
Q_vsnprintf( string, sizeof(string), pszFormat, argptr );
va_end( argptr );
DevMsg( string );
DevMsg( "%s", string );
}
}

View file

@ -168,7 +168,7 @@ void CWeaponBugBait::Drop( const Vector &vecVelocity )
pSporeExplosion->m_flSpawnRate = 16.0f;
pSporeExplosion->m_flParticleLifetime = 0.5f;
pSporeExplosion->SetRenderColor( 0.0f, 0.5f, 0.25f, 0.15f );
pSporeExplosion->SetRenderColor( 0, 128, 64, 38 );
pSporeExplosion->m_flStartSize = 32;
pSporeExplosion->m_flEndSize = 48;