Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Small fixes for new wav decoder
  • Loading branch information
Filip Gawin committed Jan 6, 2021
1 parent 4cb00d3 commit 145bd243e8fc0a25e18288cb9d012320aef8b43e
Showing with 3 additions and 3 deletions.
  1. +3 −3 src/audio/oal/stream.cpp
@@ -193,9 +193,9 @@ class CWavFile : public IDecoder
fclose(pFile);
pFile = nil;
}
if (AdpcmBlock) delete AdpcmBlock;
if (buffers) delete buffers;
if (decoders) delete decoders;
if (AdpcmBlock) delete[] AdpcmBlock;
if (buffers) delete[] buffers;
if (decoders) delete[] decoders;
}

public:

0 comments on commit 145bd24

Please sign in to comment.