shared: Missed break in logging character field save data causing incorrect logging

Closes #869
This commit is contained in:
Dmitry Tsarevich 2025-02-27 12:55:28 +03:00 committed by EricS-Valve
parent cd7ff9d05f
commit 3ae4d44b00

View File

@ -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:
{