chip-8/src/speaker.c
2023-12-26 17:51:39 +01:00

22 lines
328 B
C

#include "speaker.h"
#include "beep.h"
Sound s;
void SpeakerInit(){
InitAudioDevice(); // Initialize audio device
Wave w=LoadWaveFromMemory(".mp3", beep, sizeof(beep));
s=LoadSoundFromWave(w);
}
void SpeakerPlay(){
PlaySound(s);
}
void SpeakerStop(){
StopSound(s);
}
void SpeakerFinish(){
CloseAudioDevice();
}