Procházet zdrojové kódy

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 před 5 roky
odevzdal Ray
rodič
revize
047f093503
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. +3
    -3
      src/raudio.c

+ 3
- 3
src/raudio.c Zobrazit soubor

@ -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);

Načítá se…
Zrušit
Uložit