소스 검색

this should work

pull/110/head
Joshua Reisenauer 9 년 전
부모
커밋
f707c1ca46
2개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -1
      src/audio.c
  2. +3
    -2
      src/raylib.h

+ 1
- 1
src/audio.c 파일 보기

@ -820,7 +820,7 @@ void UpdateMusicStream(void)
// Add refilled buffer to queue again... don't let the music stop!
alSourceQueueBuffers(currentMusic.source, 1, &buffer);
if (alGetError() != AL_NO_ERROR) TraceLog(WARNING, "Ogg playing, error buffering data...");
if (alGetError() != AL_NO_ERROR) TraceLog(WARNING, "Error buffering data...");
processed--;
}

+ 3
- 2
src/raylib.h 파일 보기

@ -261,8 +261,9 @@
//----------------------------------------------------------------------------------
#ifndef __cplusplus
// Boolean type
#include <stdbool.h>
//typedef enum { false, true } bool;
#ifndef true
typedef enum { false, true } bool;
#endif
#endif
// byte type

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