MACVENTURE: Fix formatting

This commit is contained in:
Borja Lorente 2016-08-17 14:35:25 +02:00
parent 68b171f328
commit 19c7bcf9d4
18 changed files with 216 additions and 198 deletions

View file

@ -54,8 +54,9 @@ SaveStateDescriptor loadMetaData(Common::SeekableReadStream *s, int slot) {
// Depends on MACVENTURE_DESC_LENGTH
byte descSize = s->readByte();
s->seek(-(5 + MACVENTURE_DESC_LENGTH + descSize), SEEK_END);
for (int i = 0; i < descSize; ++i)
for (int i = 0; i < descSize; ++i) {
name += s->readByte();
}
desc.setDescription(name);
return desc;