From 3d9ea59616cd6f559b8a6e25f56734972fb7badf Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Wed, 7 May 2008 14:20:37 +0000 Subject: Changed kyra to use delete[] instead of delete []. svn-id: r31925 --- engines/kyra/script_tim.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/kyra/script_tim.cpp') diff --git a/engines/kyra/script_tim.cpp b/engines/kyra/script_tim.cpp index 67e076cbf8..fa9d54e8be 100644 --- a/engines/kyra/script_tim.cpp +++ b/engines/kyra/script_tim.cpp @@ -128,8 +128,8 @@ void TIMInterpreter::unload(TIM *&tim) const { if (!tim) return; - delete [] tim->text; - delete [] tim->avtl; + delete[] tim->text; + delete[] tim->avtl; delete tim; tim = 0; } -- cgit v1.2.3