diff options
| author | Jørgen P. Tjernø <[email protected]> | 2013-09-03 14:23:08 -0700 |
|---|---|---|
| committer | Jørgen P. Tjernø <[email protected]> | 2013-09-03 14:23:08 -0700 |
| commit | 10e27147843c640b275dbaae926a6fb84567f86b (patch) | |
| tree | d7c0119823166633b64dea320bd386951ac0644a /mp/src/utils/vbsp/detailobjects.cpp | |
| parent | General: (diff) | |
| parent | Fix bsp lump names being declared non-portably. (diff) | |
| download | source-sdk-2013-10e27147843c640b275dbaae926a6fb84567f86b.tar.xz source-sdk-2013-10e27147843c640b275dbaae926a6fb84567f86b.zip | |
Merge commit '82fe37f'
Diffstat (limited to 'mp/src/utils/vbsp/detailobjects.cpp')
| -rw-r--r-- | mp/src/utils/vbsp/detailobjects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mp/src/utils/vbsp/detailobjects.cpp b/mp/src/utils/vbsp/detailobjects.cpp index 22595781..b110534c 100644 --- a/mp/src/utils/vbsp/detailobjects.cpp +++ b/mp/src/utils/vbsp/detailobjects.cpp @@ -379,7 +379,7 @@ static int SelectDetail( DetailObjectGroup_t const& group ) static int AddDetailDictLump( const char* pModelName )
{
DetailObjectDictLump_t dictLump;
- strncpy( dictLump.m_Name, pModelName, DETAIL_NAME_LENGTH );
+ Q_strncpy( dictLump.m_Name, pModelName, DETAIL_NAME_LENGTH );
for (int i = s_DetailObjectDictLump.Count(); --i >= 0; )
{
|