add source-sdk-2013

This commit is contained in:
nillerusr
2022-03-01 23:00:42 +03:00
parent 88b8830e8b
commit edc8d6c584
3288 changed files with 3731 additions and 1062455 deletions
+2 -2
View File
@@ -107,11 +107,11 @@ ITexture *GetFullFrameFrameBufferTexture( int textureIndex )
char name[256];
if( textureIndex != 0 )
{
V_sprintf_safe( name, "_rt_FullFrameFB%d", textureIndex );
sprintf( name, "_rt_FullFrameFB%d", textureIndex );
}
else
{
V_strcpy_safe( name, "_rt_FullFrameFB" );
Q_strcpy( name, "_rt_FullFrameFB" );
}
s_pFullFrameFrameBufferTexture[textureIndex].Init( materials->FindTexture( name, TEXTURE_GROUP_RENDER_TARGET ) );
Assert( !IsErrorTexture( s_pFullFrameFrameBufferTexture[textureIndex] ) );