summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouist103 <35883445+louist103@users.noreply.github.com>2021-10-19 18:20:13 -0400
committerGitHub <noreply@github.com>2021-10-19 18:20:13 -0400
commit6f744be6bcec9ebf4bc852d00f3535e6f2352939 (patch)
treedf5d5072fc164c843022a0618f3210c911527200
parentd0cd6b3974706fc4d89c9b6545b8c17dd424b664 (diff)
fix (#203)
-rw-r--r--ZAPD/ZDisplayList.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/ZAPD/ZDisplayList.cpp b/ZAPD/ZDisplayList.cpp
index f7be34a..63c5684 100644
--- a/ZAPD/ZDisplayList.cpp
+++ b/ZAPD/ZDisplayList.cpp
@@ -1836,15 +1836,9 @@ std::string ZDisplayList::GetSourceOutputCode(const std::string& prefix)
std::string declaration;
- int32_t curAddr = vtxKeys[i];
-
for (auto& vtx : item)
- {
declaration += StringHelper::Sprintf("\t%s,\n", vtx.GetBodySourceCode().c_str());
- curAddr += 16;
- }
-
// Ensure there's always a trailing line feed to prevent dumb warnings.
// Please don't remove this line, unless you somehow made a way to prevent
// that warning when building the OoT repo.