Lasse Öörni 14 年 前
コミット
59b855087c
1 ファイル変更1 行追加1 行削除
  1. 1 1
      Engine/Graphics/Octree.cpp

+ 1 - 1
Engine/Graphics/Octree.cpp

@@ -502,7 +502,7 @@ void Octree::RaycastSingle(RayOctreeQuery& query) const
     
     
     Sort(rayGetDrawables_.Begin(), rayGetDrawables_.End(), CompareDrawables);
     Sort(rayGetDrawables_.Begin(), rayGetDrawables_.End(), CompareDrawables);
     
     
-    // The do the actual test according to the query, and early-out as possible
+    // Then do the actual test according to the query, and early-out as possible
     float closestHit = M_INFINITY;
     float closestHit = M_INFINITY;
     for (PODVector<Drawable*>::Iterator i = rayGetDrawables_.Begin(); i != rayGetDrawables_.End(); ++i)
     for (PODVector<Drawable*>::Iterator i = rayGetDrawables_.Begin(); i != rayGetDrawables_.End(); ++i)
     {
     {