diff options
author | Johannes Schickel | 2012-07-25 21:11:22 +0200 |
---|---|---|
committer | Johannes Schickel | 2012-07-25 21:11:22 +0200 |
commit | 3351707b2dbaba0d6b4bd21d4f62c2653f5a9354 (patch) | |
tree | 7aa4c1c5a92e9e878ace07580d6ca33f484c0ca0 | |
parent | 155118dc1e85d4bbb1b678d6835d68c3e01f85f3 (diff) | |
download | scummvm-rg350-3351707b2dbaba0d6b4bd21d4f62c2653f5a9354.tar.gz scummvm-rg350-3351707b2dbaba0d6b4bd21d4f62c2653f5a9354.tar.bz2 scummvm-rg350-3351707b2dbaba0d6b4bd21d4f62c2653f5a9354.zip |
TOON: Fix delete[] formatting.
-rw-r--r-- | engines/toon/audio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/toon/audio.cpp b/engines/toon/audio.cpp index 77822ab078..bc0e051057 100644 --- a/engines/toon/audio.cpp +++ b/engines/toon/audio.cpp @@ -326,7 +326,7 @@ bool AudioStreamInstance::readPacket() { } if (numDecompressedBytes > _bufferMaxSize) { - delete [] _buffer; + delete[] _buffer; _bufferMaxSize = numDecompressedBytes; _buffer = new int16[numDecompressedBytes]; } |