aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/smush/codec37.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2008-05-07 14:31:45 +0000
committerJohannes Schickel2008-05-07 14:31:45 +0000
commit600ab40bcab24d3c1c8d98d3fefefa6026f03382 (patch)
tree37d052c958cb62aa947bc97c651d2d49a240f81f /engines/scumm/smush/codec37.cpp
parentf65e9a17c34daeaa93b7de99b639cddcc6997abe (diff)
downloadscummvm-rg350-600ab40bcab24d3c1c8d98d3fefefa6026f03382.tar.gz
scummvm-rg350-600ab40bcab24d3c1c8d98d3fefefa6026f03382.tar.bz2
scummvm-rg350-600ab40bcab24d3c1c8d98d3fefefa6026f03382.zip
Changed all delete [] usages to delete[].
svn-id: r31927
Diffstat (limited to 'engines/scumm/smush/codec37.cpp')
-rw-r--r--engines/scumm/smush/codec37.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/smush/codec37.cpp b/engines/scumm/smush/codec37.cpp
index 0c1db13a26..deabd25595 100644
--- a/engines/scumm/smush/codec37.cpp
+++ b/engines/scumm/smush/codec37.cpp
@@ -52,7 +52,7 @@ Codec37Decoder::Codec37Decoder(int width, int height) {
Codec37Decoder::~Codec37Decoder() {
if (_offsetTable) {
- delete []_offsetTable;
+ delete[]_offsetTable;
_offsetTable = 0;
_tableLastPitch = -1;
_tableLastIndex = -1;