1
0
Fork 0
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:
fig02 2021-01-08 19:38:28 -05:00 committed by GitHub
parent 5c6335f9fb
commit 1ff2f0f849
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
171 changed files with 1567 additions and 826 deletions

View file

@ -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 "";
}