mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-11 15:38:12 +00:00
Merge pull request #98 from iZarif/master
fix gcc 8.3.0 format-overflow warnings
This commit is contained in:
commit
ba1527a944
@ -77,7 +77,7 @@ void WeaponsResource::LoadWeaponSprites( WEAPON *pWeapon )
|
||||
else
|
||||
iRes = 640;
|
||||
|
||||
char sz[128];
|
||||
char sz[256];
|
||||
|
||||
if( !pWeapon )
|
||||
return;
|
||||
|
@ -820,7 +820,7 @@ bool CHudSpectator::IsActivePlayer( cl_entity_t *ent )
|
||||
|
||||
bool CHudSpectator::ParseOverviewFile()
|
||||
{
|
||||
char filename[255] = { 0 };
|
||||
char filename[512] = { 0 };
|
||||
char levelname[255] = { 0 };
|
||||
char token[1024] = { 0 };
|
||||
float height;
|
||||
|
@ -724,7 +724,7 @@ void CNihilanth::NextActivity()
|
||||
|
||||
if( ( pev->health < gSkillData.nihilanthHealth / 2 || m_iActiveSpheres < N_SPHERES / 2 ) && m_hRecharger == 0 && m_iLevel <= 9 )
|
||||
{
|
||||
char szName[64];
|
||||
char szName[128];
|
||||
|
||||
CBaseEntity *pEnt = NULL;
|
||||
CBaseEntity *pRecharger = NULL;
|
||||
@ -772,7 +772,7 @@ void CNihilanth::NextActivity()
|
||||
|
||||
if( iseq != pev->sequence )
|
||||
{
|
||||
char szText[64];
|
||||
char szText[128];
|
||||
|
||||
sprintf( szText, "%s%d", m_szDrawUse, m_iLevel );
|
||||
FireTargets( szText, this, this, USE_ON, 1.0 );
|
||||
@ -820,7 +820,7 @@ void CNihilanth::NextActivity()
|
||||
}
|
||||
else
|
||||
{
|
||||
char szText[64];
|
||||
char szText[128];
|
||||
|
||||
sprintf( szText, "%s%d", m_szTeleportTouch, m_iTeleport );
|
||||
CBaseEntity *pTouch = UTIL_FindEntityByTargetname( NULL, szText );
|
||||
@ -1100,7 +1100,7 @@ void CNihilanth::HandleAnimEvent( MonsterEvent_t *pEvent )
|
||||
// prayer
|
||||
if( m_hEnemy != 0 )
|
||||
{
|
||||
char szText[32];
|
||||
char szText[128];
|
||||
|
||||
sprintf( szText, "%s%d", m_szTeleportTouch, m_iTeleport );
|
||||
CBaseEntity *pTouch = UTIL_FindEntityByTargetname( NULL, szText );
|
||||
|
Loading…
Reference in New Issue
Block a user