mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-10 10:49:35 +00:00
add source-sdk-2013
This commit is contained in:
@@ -326,11 +326,11 @@ int CFuncLadder::GetDismountCount() const
|
||||
// Input : index -
|
||||
// Output : CInfoLadderDismountHandle
|
||||
//-----------------------------------------------------------------------------
|
||||
CInfoLadderDismount *CFuncLadder::GetDismount( int index_ )
|
||||
CInfoLadderDismount *CFuncLadder::GetDismount( int index )
|
||||
{
|
||||
if ( index_ < 0 || index_ >= m_Dismounts.Count() )
|
||||
if ( index < 0 || index >= m_Dismounts.Count() )
|
||||
return NULL;
|
||||
return m_Dismounts[index_];
|
||||
return m_Dismounts[ index ];
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user