aboutsummaryrefslogtreecommitdiff
path: root/engines/toon
diff options
context:
space:
mode:
authorJohannes Schickel2012-07-25 21:11:22 +0200
committerJohannes Schickel2012-07-25 21:11:22 +0200
commit3351707b2dbaba0d6b4bd21d4f62c2653f5a9354 (patch)
tree7aa4c1c5a92e9e878ace07580d6ca33f484c0ca0 /engines/toon
parent155118dc1e85d4bbb1b678d6835d68c3e01f85f3 (diff)
downloadscummvm-rg350-3351707b2dbaba0d6b4bd21d4f62c2653f5a9354.tar.gz
scummvm-rg350-3351707b2dbaba0d6b4bd21d4f62c2653f5a9354.tar.bz2
scummvm-rg350-3351707b2dbaba0d6b4bd21d4f62c2653f5a9354.zip
TOON: Fix delete[] formatting.
Diffstat (limited to 'engines/toon')
-rw-r--r--engines/toon/audio.cpp2
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];
}