From 246a7c407faec988bd7ae25b99059051c12105d9 Mon Sep 17 00:00:00 2001 From: mastertimethief Date: Wed, 11 Jun 2025 17:25:36 -0400 Subject: [PATCH] Fixed comments --- LEGO1/lego/legoomni/src/build/legocarbuildpresenter.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/LEGO1/lego/legoomni/src/build/legocarbuildpresenter.cpp b/LEGO1/lego/legoomni/src/build/legocarbuildpresenter.cpp index 1038c45c..2dd76641 100644 --- a/LEGO1/lego/legoomni/src/build/legocarbuildpresenter.cpp +++ b/LEGO1/lego/legoomni/src/build/legocarbuildpresenter.cpp @@ -355,7 +355,7 @@ void LegoCarBuildAnimPresenter::InitBuildPlatform() LegoAnimNodeData* destData; LegoTreeNode** children; - //Get Platform data, Shelf Frame data, and number of build parts + // Get Platform data, Shelf Frame data, and number of build parts for (i = 0; i < totalNodes; i++) { LegoAnimNodeData* data = (LegoAnimNodeData*) GetTreeNode(m_anim->GetRoot(), i)->GetData(); name = data->GetName(); @@ -385,7 +385,7 @@ void LegoCarBuildAnimPresenter::InitBuildPlatform() m_parts = new UnknownListEntry[m_numberOfParts]; assert(m_parts); - //Go through and add the wired name of each part + // Go through and add the wired name of each part for (i = 0; i < totalNodes; i++) { name = ((LegoAnimNodeData*) GetTreeNode(m_anim->GetRoot(), i)->GetData())->GetName(); @@ -404,7 +404,7 @@ void LegoCarBuildAnimPresenter::InitBuildPlatform() MxS16 counter = 0; - //Go through and add the normal name of each part + // Go through and add the normal name of each part for (i = 0; i < totalNodes; i++) { name = ((LegoAnimNodeData*) GetTreeNode(m_anim->GetRoot(), i)->GetData())->GetName(); if (StringEndsOnYOrN(name)) { @@ -423,7 +423,7 @@ void LegoCarBuildAnimPresenter::InitBuildPlatform() } } - //Set Platform root node + // Set Platform root node destNode = new LegoTreeNode(); assert(destNode); destData = new LegoAnimNodeData();