mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-16 20:10:28 +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
|
@ -19,11 +19,11 @@ Globals::Globals()
|
|||
segmentRefFiles = map<int, ZFile*>();
|
||||
genSourceFile = true;
|
||||
testMode = false;
|
||||
debugMessages = false;
|
||||
profile = false;
|
||||
includeFilePrefix = false;
|
||||
useExternalResources = true;
|
||||
lastScene = nullptr;
|
||||
verbosity = VERBOSITY_SILENT;
|
||||
}
|
||||
|
||||
string Globals::FindSymbolSegRef(int segNumber, uint32_t symbolAddress)
|
||||
|
@ -64,7 +64,7 @@ string Globals::FindSymbolSegRef(int segNumber, uint32_t symbolAddress)
|
|||
return "ERROR";
|
||||
}
|
||||
|
||||
void Globals::ReadConfigFile(string configFilePath)
|
||||
void Globals::ReadConfigFile(const std::string& configFilePath)
|
||||
{
|
||||
XMLDocument doc;
|
||||
XMLError eResult = doc.LoadFile(configFilePath.c_str());
|
||||
|
@ -93,7 +93,7 @@ void Globals::ReadConfigFile(string configFilePath)
|
|||
}
|
||||
}
|
||||
|
||||
void Globals::GenSymbolMap(string symbolMapPath)
|
||||
void Globals::GenSymbolMap(const std::string& symbolMapPath)
|
||||
{
|
||||
auto symbolLines = File::ReadAllLines(symbolMapPath);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue