소스 검색

Stop sound source before unloading

pull/218/head
Ray San 8 년 전
부모
커밋
fc7d4cef18
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      src/audio.c

+ 2
- 0
src/audio.c 파일 보기

@ -353,6 +353,8 @@ void UnloadWave(Wave wave)
// Unload sound
void UnloadSound(Sound sound)
{
alSourceStop(sound.source);
alDeleteSources(1, &sound.source);
alDeleteBuffers(1, &sound.buffer);

불러오는 중...
취소
저장