Skip to content

Commit

Permalink
BSP Builder|Fixed: Sector mismatch debug message quoted incorrect index
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed May 29, 2012
1 parent 5634f14 commit 9ba0ae8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/engine/portable/src/map/bsp/partitioner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -488,8 +488,8 @@ struct Partitioner::Instance
if(!cur->selfRef && !next->selfRef)
{
LOG_DEBUG("Sector mismatch (#%d [%1.1f, %1.1f] != #%d [%1.1f, %1.1f]).")
<< cur->after->buildData.index << cur->vertex->origin[VX]
<< cur->vertex->origin[VY] << next->before->buildData.index
<< cur->after->buildData.index-1 << cur->vertex->origin[VX]
<< cur->vertex->origin[VY] << next->before->buildData.index-1
<< next->vertex->origin[VX] << next->vertex->origin[VY];
}

Expand Down

0 comments on commit 9ba0ae8

Please sign in to comment.