mirror of
https://github.com/ValveSoftware/source-sdk-2013.git
synced 2025-04-08 19:12:51 +00:00
Fixed more compiler warnings
This commit is contained in:
parent
b8f979fd04
commit
95f749f88d
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue