summaryrefslogtreecommitdiff
path: root/ZAPD/ZMtx.cpp
diff options
context:
space:
mode:
authorNicholas Estelami <NEstelami@users.noreply.github.com>2021-05-06 18:20:07 -0400
committerGitHub <noreply@github.com>2021-05-06 18:20:07 -0400
commit5a721d58d4b28f4797d6fdf29d9926e5e968a939 (patch)
treecb01d50cec516391b25ec8c0e34bb1699a151719 /ZAPD/ZMtx.cpp
parentbd4735480a2e6b53585a4f764ae13804e0737a21 (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/ZMtx.cpp')
-rw-r--r--ZAPD/ZMtx.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ZAPD/ZMtx.cpp b/ZAPD/ZMtx.cpp
index 9a90c29..6da80a8 100644
--- a/ZAPD/ZMtx.cpp
+++ b/ZAPD/ZMtx.cpp
@@ -14,7 +14,7 @@ ZMtx::ZMtx(const std::string& prefix, const std::vector<uint8_t>& nRawData, uint
: ZResource(nParent)
{
name = GetDefaultName(prefix.c_str(), rawDataIndex);
- ExtractFromFile(nRawData, nRawDataIndex, "");
+ ExtractFromFile(nRawData, nRawDataIndex);
DeclareVar("", "");
}
@@ -28,9 +28,9 @@ void ZMtx::ParseRawData()
}
void ZMtx::ExtractFromXML(tinyxml2::XMLElement* reader, const std::vector<uint8_t>& nRawData,
- uint32_t nRawDataIndex, const std::string& nRelPath)
+ uint32_t nRawDataIndex)
{
- ZResource::ExtractFromXML(reader, nRawData, nRawDataIndex, nRelPath);
+ ZResource::ExtractFromXML(reader, nRawData, nRawDataIndex);
DeclareVar("", "");
}