aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/stringtable.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/macventure/stringtable.h')
-rw-r--r--engines/macventure/stringtable.h2
1 files changed, 1 insertions, 1 deletions
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.