diff options
| author | Nicholas Estelami <NEstelami@users.noreply.github.com> | 2021-05-06 18:20:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-06 18:20:07 -0400 |
| commit | 5a721d58d4b28f4797d6fdf29d9926e5e968a939 (patch) | |
| tree | cb01d50cec516391b25ec8c0e34bb1699a151719 /ZAPD/ZFile.cpp | |
| parent | bd4735480a2e6b53585a4f764ae13804e0737a21 (diff) | |
Refactor: Removed `relPath` since it is no longer used. (#136)
* Refactor: Removed relPath since it is no longer used.
* Removed remaining references
Co-authored-by: Jack Walker <7463599+Jack-Walker@users.noreply.github.com>
Diffstat (limited to 'ZAPD/ZFile.cpp')
| -rw-r--r-- | ZAPD/ZFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ZAPD/ZFile.cpp b/ZAPD/ZFile.cpp index ada9f38..b2a3996 100644 --- a/ZAPD/ZFile.cpp +++ b/ZAPD/ZFile.cpp @@ -192,7 +192,7 @@ void ZFile::ParseXML(ZFileMode mode, XMLElement* reader, std::string filename, b nRes->parent = this; if (mode == ZFileMode::Extract) - nRes->ExtractFromXML(child, rawData, rawDataIndex, folderName); + nRes->ExtractFromXML(child, rawData, rawDataIndex); // TODO: See if we can make this part of the ZRoom code... if (nRes->GetResourceType() == ZResourceType::Room) |
