diff options
author | Johannes Schickel | 2008-05-07 15:09:10 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-05-07 15:09:10 +0000 |
commit | 311e9165ed3b9442049e9e5e6b25c31d024f04ac (patch) | |
tree | a72a266baf6b872300c877f5ed55e8f5cb8ac1dd /backends | |
parent | 2d707af33825097e3fd0c001101d9a2691e9ff6f (diff) | |
download | scummvm-rg350-311e9165ed3b9442049e9e5e6b25c31d024f04ac.tar.gz scummvm-rg350-311e9165ed3b9442049e9e5e6b25c31d024f04ac.tar.bz2 scummvm-rg350-311e9165ed3b9442049e9e5e6b25c31d024f04ac.zip |
Proper delete[] formatting (this time all occurences should've been changed...)
svn-id: r31929
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp index dd34f8bf8f..d3e92731db 100644 --- a/backends/platform/symbian/src/SymbianOS.cpp +++ b/backends/platform/symbian/src/SymbianOS.cpp @@ -142,7 +142,7 @@ void OSystem_SDL_Symbian::initBackend() { } OSystem_SDL_Symbian::~OSystem_SDL_Symbian() { - delete[]_stereo_mix_buffer; + delete[] _stereo_mix_buffer; } int OSystem_SDL_Symbian::getDefaultGraphicsMode() const { |