Browse Source

Remove dead assignments (#980)

The result of `success` is actually never used. Either we should check
for it and return or remove it. I assume just checking the last one is
okay.
pull/982/head
Michael Vetter 5 years ago
committed by Ray
parent
commit
047f093503
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/raudio.c

+ 3
- 3
src/raudio.c View File

@ -1870,9 +1870,9 @@ static int SaveWAV(Wave wave, const char *fileName)
waveData.subChunkID[3] = 'a';
waveData.subChunkSize = dataSize;
success = fwrite(&riffHeader, sizeof(RiffHeader), 1, wavFile);
success = fwrite(&waveFormat, sizeof(WaveFormat), 1, wavFile);
success = fwrite(&waveData, sizeof(WaveData), 1, wavFile);
fwrite(&riffHeader, sizeof(RiffHeader), 1, wavFile);
fwrite(&waveFormat, sizeof(WaveFormat), 1, wavFile);
fwrite(&waveData, sizeof(WaveData), 1, wavFile);
success = fwrite(wave.data, dataSize, 1, wavFile);

Loading…
Cancel
Save