aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/stringtable.h
diff options
context:
space:
mode:
authorBorja Lorente2016-08-17 14:35:25 +0200
committerBorja Lorente2016-08-19 16:30:24 +0200
commit19c7bcf9d492dc25ef7458df001accfced21edff (patch)
tree043ee06f42678a085802f7c57c41df2487f1ecc6 /engines/macventure/stringtable.h
parent68b171f328712d39072b5fd133eec93cb1bea3dd (diff)
downloadscummvm-rg350-19c7bcf9d492dc25ef7458df001accfced21edff.tar.gz
scummvm-rg350-19c7bcf9d492dc25ef7458df001accfced21edff.tar.bz2
scummvm-rg350-19c7bcf9d492dc25ef7458df001accfced21edff.zip
MACVENTURE: Fix formatting
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.