summaryrefslogtreecommitdiff
path: root/ZAPD/ZRoom/Commands/SetPathways.cpp
diff options
context:
space:
mode:
authorfig02 <fig02srl@gmail.com>2020-12-31 19:37:40 -0500
committerGitHub <noreply@github.com>2020-12-31 19:37:40 -0500
commita8430341a143a40d31874b6659dff89aa58959da (patch)
tree6a15555aee720bb6cf2448c0efdc0a0686873fcc /ZAPD/ZRoom/Commands/SetPathways.cpp
parent65332778f1994820db7008e23c6e2247e0db02d1 (diff)
various changes (#36)
Diffstat (limited to 'ZAPD/ZRoom/Commands/SetPathways.cpp')
-rw-r--r--ZAPD/ZRoom/Commands/SetPathways.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ZAPD/ZRoom/Commands/SetPathways.cpp b/ZAPD/ZRoom/Commands/SetPathways.cpp
index d9b26a9..49ea62a 100644
--- a/ZAPD/ZRoom/Commands/SetPathways.cpp
+++ b/ZAPD/ZRoom/Commands/SetPathways.cpp
@@ -79,7 +79,7 @@ string SetPathways::GenerateSourceCodePass2(string roomName, int baseAddress)
int index = 0;
for (PathwayEntry* entry : pathways)
{
- declaration += StringHelper::Sprintf("\t{ %i, %i, %i }, //0x%08X \n", entry->x, entry->y, entry->z, listSegmentOffset + (index * 6));
+ declaration += StringHelper::Sprintf("{ %i, %i, %i }, //0x%08X \n", entry->x, entry->y, entry->z, listSegmentOffset + (index * 6));
index++;
}