Skip to content

Commit

Permalink
Fixed a comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
danij committed May 31, 2009
1 parent 0ee28c2 commit 1aeaf9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/engine/portable/src/p_sight.c
Expand Up @@ -221,11 +221,11 @@ static boolean crossBSPNode(unsigned int bspNum, losdata_t* los)
// Would the trace completely cross this partition?
if(side == R_PointOnSide(los->to[VX], los->to[VY],
&node->partition))
{ // No.
{ // Yes, decend!
bspNum = node->children[side];
}
else
{ // Yes, decend!
{ // No.
if(!crossBSPNode(node->children[side], los))
return 0; // Cross the starting side.
else
Expand Down

0 comments on commit 1aeaf9c

Please sign in to comment.