From 19c7bcf9d492dc25ef7458df001accfced21edff Mon Sep 17 00:00:00 2001 From: Borja Lorente Date: Wed, 17 Aug 2016 14:35:25 +0200 Subject: MACVENTURE: Fix formatting --- engines/macventure/stringtable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/macventure/stringtable.h') diff --git a/engines/macventure/stringtable.h b/engines/macventure/stringtable.h index 54aba03337..2f1d671696 100644 --- a/engines/macventure/stringtable.h +++ b/engines/macventure/stringtable.h @@ -79,7 +79,7 @@ private: uint8 strLength = 0; for (uint i = 0; i < numStrings; ++i) { strLength = res->readByte(); - char* str = new char[strLength + 1]; + char *str = new char[strLength + 1]; res->read(str, strLength); str[strLength] = '\0'; // HACK until a proper special char implementation is found, this will have to do. -- cgit v1.2.3