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
2020-06-02 22:56:43 -05:00

25 lines
392 B
C

#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
addSound ( char soundpath[512] )
{
sounds[soundCount] = spSoundLoad(soundpath);
soundCount++;
}
// cleanup all sounds
void
cleanupSounds ( void )
{
for ( int i = 0; i < soundCount; i++ ) {
spSoundDelete( sounds[i] );
}
}