engine: server: remove unused DumpHashString function

This commit is contained in:
Alibek Omarov 2024-01-27 22:45:06 +03:00
parent c77f290bc6
commit 0579e40857
1 changed files with 0 additions and 27 deletions

View File

@ -766,33 +766,6 @@ static void SaveFinish( SAVERESTOREDATA *pSaveData )
Mem_Free( pSaveData );
}
/*
=============
DumpHashStrings
debug thing
=============
*/
static void DumpHashStrings( SAVERESTOREDATA *pSaveData, const char *pMessage )
{
int i, count = 0;
if( pSaveData && pSaveData->pTokens )
{
Con_Printf( "%s\n", pMessage );
for( i = 0; i < pSaveData->tokenCount; i++ )
{
if( !pSaveData->pTokens[i] )
continue;
Con_Printf( "#%i %s\n", count, pSaveData->pTokens[i] );
count++;
}
Con_Printf( "total %i actual %i\n", pSaveData->tokenCount, count );
}
}
/*
=============
StoreHashTable