瀏覽代碼

Fix crash with delay demo. (#2472)

pull/2481/head
ptarabbia 2 年之前
committed by GitHub
父節點
當前提交
ea598f7d77
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 4 行新增3 行删除
  1. +4
    -3
      examples/audio/audio_music_stream.c

+ 4
- 3
examples/audio/audio_music_stream.c 查看文件

@ -68,15 +68,16 @@ int main(void)
Music music = LoadMusicStream("resources/country.mp3");
// Allocate buffer for the delay effect
delayBuffer = (float *)RL_CALLOC(48000*2, sizeof(float)); // 1 second delay (device sampleRate*channels)
delayBufferSize = 48000 * 2;
delayBuffer = (float *)RL_CALLOC(delayBufferSize, sizeof(float)); // 1 second delay (device sampleRate*channels)
PlayMusicStream(music);
float timePlayed = 0.0f;
bool pause = false;
bool hasFilter = false;
bool hasDelay = false;
bool hasFilter = true;
bool hasDelay = true;
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------

Loading…
取消
儲存