Archived
1
0
Disbranĉigi 0
Ĉi tiu deponejo arĥiviĝis je 2024-01-29. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
efemmera/lib/sound.c

25 lines
394 B
C
Raw Normal View History

2020-05-31 01:19:16 -05:00
#include <sparrow3d.h>
#include <string.h>
#include "sound.h"
int soundCount = 0;
spSound* sounds[10] = { NULL };
// add a sound to the global sounds array
void
add_sound ( char soundpath[512] )
{
sounds[soundCount] = spSoundLoad(soundpath);
soundCount++;
}
// cleanup all sounds
void
cleanup_sounds ( void )
{
for ( int i = 0; i < soundCount; i++ ) {
spSoundDelete( sounds[i] );
}
}