//-----------------------------------------------------------------------------
// Purpose: 
// Input  : *txt - 
//-----------------------------------------------------------------------------
void SV_RedirectAddText( const char *txt )
{
	SV_RedirectCheckFlush( strlen( txt ) );
	Q_strcat ( sv_redirect_buffer, (char *)txt );
}
//-----------------------------------------------------------------------------
// Purpose: 
// Input  : *txt - 
//-----------------------------------------------------------------------------
void SV_RedirectAddText( const char *txt )
{
	SV_RedirectCheckFlush( strlen( txt ) );
	Q_strncat( sv_redirect_buffer, (char *)txt, sizeof( sv_redirect_buffer ), COPY_ALL_CHARACTERS );
}