Browse Source

engine: server: remove unused DumpHashString function

master
Alibek Omarov 5 months ago
parent
commit
0579e40857
  1. 27
      engine/server/sv_save.c

27
engine/server/sv_save.c

@ -766,33 +766,6 @@ static void SaveFinish( SAVERESTOREDATA *pSaveData ) @@ -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

Loading…
Cancel
Save