diff options
author | Johannes Schickel | 2012-07-25 21:11:04 +0200 |
---|---|---|
committer | Johannes Schickel | 2012-07-25 21:11:04 +0200 |
commit | 155118dc1e85d4bbb1b678d6835d68c3e01f85f3 (patch) | |
tree | d0092897ba4785f40afd873cfd9f055eb5c44041 | |
parent | d98b4621908215c74fbd307044381c0e7533bb55 (diff) | |
download | scummvm-rg350-155118dc1e85d4bbb1b678d6835d68c3e01f85f3.tar.gz scummvm-rg350-155118dc1e85d4bbb1b678d6835d68c3e01f85f3.tar.bz2 scummvm-rg350-155118dc1e85d4bbb1b678d6835d68c3e01f85f3.zip |
SWORD1: Fix delete[] formatting.
-rw-r--r-- | engines/sword1/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword1/sound.cpp b/engines/sword1/sound.cpp index 3574074b00..61bf5257ab 100644 --- a/engines/sword1/sound.cpp +++ b/engines/sword1/sound.cpp @@ -142,7 +142,7 @@ void Sound::checkSpeechFileEndianness() { be_diff_sum += fabs((double)(be_value - prev_be_value)); prev_be_value = be_value; } - delete [] data; + delete[] data; } // Set the big endian flag _bigEndianSpeech = (be_diff_sum < le_diff_sum); |