Sfoglia il codice sorgente

Update raudio.c

pull/3709/head
Ray 1 anno fa
parent
commit
c95b71d40d
1 ha cambiato i file con 4 aggiunte e 2 eliminazioni
  1. +4
    -2
      src/raudio.c

+ 4
- 2
src/raudio.c Vedi File

@ -939,12 +939,14 @@ Sound LoadSoundAlias(Sound source)
if (source.stream.buffer->data != NULL)
{
AudioBuffer* audioBuffer = LoadAudioBuffer(AUDIO_DEVICE_FORMAT, AUDIO_DEVICE_CHANNELS, AUDIO.System.device.sampleRate, 0, AUDIO_BUFFER_USAGE_STATIC);
AudioBuffer *audioBuffer = LoadAudioBuffer(AUDIO_DEVICE_FORMAT, AUDIO_DEVICE_CHANNELS, AUDIO.System.device.sampleRate, 0, AUDIO_BUFFER_USAGE_STATIC);
if (audioBuffer == NULL)
{
TRACELOG(LOG_WARNING, "SOUND: Failed to create buffer");
return sound; // early return to avoid dereferencing the audioBuffer null pointer
return sound; // Early return to avoid dereferencing the audioBuffer null pointer
}
audioBuffer->sizeInFrames = source.stream.buffer->sizeInFrames;
audioBuffer->volume = source.stream.buffer->volume;
audioBuffer->data = source.stream.buffer->data;

||||||
x
 
000:0
Caricamento…
Annulla
Salva