From cc039ef1135dc6f751ef23e22c344b7b9456653c Mon Sep 17 00:00:00 2001 From: Strangerke Date: Sun, 20 Dec 2015 16:33:48 +0100 Subject: [PATCH] LAB: Fix crash in intro --- engines/lab/dispman.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/lab/dispman.cpp b/engines/lab/dispman.cpp index 6ed3dcd6564..32c33885afb 100644 --- a/engines/lab/dispman.cpp +++ b/engines/lab/dispman.cpp @@ -108,7 +108,7 @@ void DisplayMan::readPict(Common::String filename, bool playOnce, bool onlyDiffD } void DisplayMan::freePict() { - delete[] _curBitmap; + delete _curBitmap; _curBitmap = nullptr; }