Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions code/client/snd_openal.c
Original file line number Diff line number Diff line change
Expand Up @@ -2365,6 +2365,18 @@ S_AL_SoundList
static
void S_AL_SoundList( void )
{
int i;
alSfx_t *sfx;
int size, total;

total = 0;
for (sfx=knownSfx, i=0 ; i<numSfx ; i++, sfx++) {
size = sfx->info.samples;
total += size;
Com_Printf("%6i : %s[%s]\n", size,
sfx->filename, sfx->inMemory ? "resident " : "paged out");
}
Com_Printf ("Total resident: %i\n", total);
}

#ifdef USE_VOIP
Expand Down