diff options
| author | Johannes Schickel | 2008-05-07 14:31:45 +0000 |
|---|---|---|
| committer | Johannes Schickel | 2008-05-07 14:31:45 +0000 |
| commit | 600ab40bcab24d3c1c8d98d3fefefa6026f03382 (patch) | |
| tree | 37d052c958cb62aa947bc97c651d2d49a240f81f /graphics | |
| parent | f65e9a17c34daeaa93b7de99b639cddcc6997abe (diff) | |
| download | scummvm-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 'graphics')
| -rw-r--r-- | graphics/imageman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/imageman.cpp b/graphics/imageman.cpp index 6ab64e8bca..83ffc40c99 100644 --- a/graphics/imageman.cpp +++ b/graphics/imageman.cpp @@ -110,7 +110,7 @@ bool ImageManager::registerSurface(const Common::String &name, Surface *surf) { unzCloseCurrentFile(file->file); Common::MemoryReadStream stream(buffer, fileInfo.uncompressed_size); surf = ImageDecoder::loadFile(stream); - delete [] buffer; + delete[] buffer; if (!surf) return false; |
