diff options
| author | Nicola Mettifogo | 2008-07-10 02:00:54 +0000 |
|---|---|---|
| committer | Nicola Mettifogo | 2008-07-10 02:00:54 +0000 |
| commit | 03cd937b13d5629f84f52b05c6374e5a3373be15 (patch) | |
| tree | eff65458b5775392e3e044cb3f2d102637dcc0f0 /engines | |
| parent | 9f96471f47acdcb7687281a563663cd96e3a0788 (diff) | |
| download | scummvm-rg350-03cd937b13d5629f84f52b05c6374e5a3373be15.tar.gz scummvm-rg350-03cd937b13d5629f84f52b05c6374e5a3373be15.tar.bz2 scummvm-rg350-03cd937b13d5629f84f52b05c6374e5a3373be15.zip | |
Fixed destruction of sprites in BRA.
svn-id: r32983
Diffstat (limited to 'engines')
| -rw-r--r-- | engines/parallaction/disk_br.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/disk_br.cpp b/engines/parallaction/disk_br.cpp index 543ed14146..4068cbc202 100644 --- a/engines/parallaction/disk_br.cpp +++ b/engines/parallaction/disk_br.cpp @@ -58,7 +58,7 @@ struct Sprites : public Frames { } ~Sprites() { - delete _sprites; + delete[] _sprites; } uint16 getNum() { |
