mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-25 08:21:22 +00:00
ZAPD update (#612)
* remove roompoly * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "fd4d53a26" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "fd4d53a26" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
This commit is contained in:
parent
5c6335f9fb
commit
1ff2f0f849
171 changed files with 1567 additions and 826 deletions
|
@ -25,7 +25,7 @@ void ZResource::ParseXML(tinyxml2::XMLElement* reader)
|
|||
outName = name;
|
||||
}
|
||||
|
||||
void ZResource::Save(string outFolder)
|
||||
void ZResource::Save(const std::string& outFolder)
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ std::string ZResource::GetOutName()
|
|||
|
||||
void ZResource::SetName(string nName)
|
||||
{
|
||||
name = nName;
|
||||
name = std::move(nName);
|
||||
}
|
||||
|
||||
bool ZResource::IsExternalResource()
|
||||
|
@ -84,12 +84,12 @@ void ZResource::SetRawDataIndex(int value)
|
|||
rawDataIndex = value;
|
||||
}
|
||||
|
||||
string ZResource::GetSourceOutputCode(std::string prefix)
|
||||
string ZResource::GetSourceOutputCode(const std::string& prefix)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
string ZResource::GetSourceOutputHeader(std::string prefix)
|
||||
string ZResource::GetSourceOutputHeader(const std::string& prefix)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue