mirror of
https://github.com/ValveSoftware/source-sdk-2013.git
synced 2025-04-10 12:09:03 +00:00
shared: Missed break in logging character field save data causing incorrect logging
Closes #869
This commit is contained in:
parent
cd7ff9d05f
commit
3ae4d44b00
1 changed files with 1 additions and 0 deletions
|
@ -325,6 +325,7 @@ void CSave::Log( const char *pName, fieldtype_t fieldType, void *value, int coun
|
|||
char chValue = pValue[iCount];
|
||||
Q_snprintf( szTempBuf, sizeof( szTempBuf ), "%c", chValue );
|
||||
Q_strncat( szBuf, szTempBuf, sizeof( szTempBuf ), COPY_ALL_CHARACTERS );
|
||||
break;
|
||||
}
|
||||
case FIELD_COLOR32:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue