From ad7c50e70d09695abd8a61b5631c2883d7e6b387 Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Fri, 10 Jul 2009 21:49:47 +0000 Subject: Fixing mismatched delete svn-id: r42354 --- engines/gob/video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/gob/video.cpp b/engines/gob/video.cpp index f05ee8565f..98350af738 100644 --- a/engines/gob/video.cpp +++ b/engines/gob/video.cpp @@ -62,7 +62,7 @@ Font::Font(const byte *data) : _dataPtr(data) { } Font::~Font() { - delete _dataPtr; + delete[] _dataPtr; } uint8 Font::getCharWidth(uint8 c) const { -- cgit v1.2.3