chip-8/src/speaker.c

23 lines
328 B
C
Raw Normal View History

2023-12-26 13:17:52 +01:00
#include "speaker.h"
2023-12-26 17:51:39 +01:00
#include "beep.h"
2023-12-26 13:17:52 +01:00
Sound s;
void SpeakerInit(){
2023-12-26 17:51:39 +01:00
InitAudioDevice(); // Initialize audio device
Wave w=LoadWaveFromMemory(".mp3", beep, sizeof(beep));
s=LoadSoundFromWave(w);
2023-12-26 13:17:52 +01:00
}
2023-12-26 17:51:39 +01:00
void SpeakerPlay(){
2023-12-26 13:17:52 +01:00
PlaySound(s);
}
2023-12-26 17:51:39 +01:00
void SpeakerStop(){
2023-12-26 13:17:52 +01:00
StopSound(s);
}
void SpeakerFinish(){
CloseAudioDevice();
}