Skip to content

Commit

Permalink
AURORA: Store the erf.dict name inside the HERF resource list
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Nov 26, 2016
1 parent 02e5144 commit 4652839
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/aurora/herffile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ void HERFFile::readResList(Common::SeekableReadStream &herf) {
res->name = Common::FilePath::getStem(name->second);
res->type = TypeMan.getFileType(name->second);
}

if ((iRes->offset == _dictOffset) && (iRes->size == _dictSize)) {
res->name = "erf";
res->type = kFileTypeDICT;
}
}
}

Expand Down

0 comments on commit 4652839

Please sign in to comment.