engine: server: cleanup unused variables

This commit is contained in:
Alibek Omarov
2026-05-13 10:09:37 +05:00
parent 9bad17505e
commit cb7ea5729a
5 changed files with 3 additions and 11 deletions
+1 -3
View File
@@ -909,13 +909,11 @@ static void SV_GenerateTestPacket( void )
// TODO: shrink to minimum!
for( i = 0; i < svs.testpacket_filelen; i++ )
{
uint32_t crc2;
CRC32_ProcessByte( &crc, filepos[i] );
svs.testpacket_crcs[i] = crc;
#if 0
// test
crc2 = 0;
uint32_t crc2 = 0;
CRC32_ProcessBuffer( &crc2, filepos, i + 1 );
if( svs.testpacket_crcs[i] != crc2 )
{