Skip to content

Commit

Permalink
Fixed non-compilable error in R_InitLineNeighbors when _DEBUG.
Browse files Browse the repository at this point in the history
  • Loading branch information
danij committed Sep 16, 2006
1 parent 33c47d2 commit ed604d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/engine/portable/src/r_world.c
Expand Up @@ -1909,15 +1909,15 @@ void R_InitLineNeighbors(void)
}
}

#ifdef _DEBUG
#if _DEBUG
if(verbose >= 1)
{
for(i = 0; i < numlines; ++i)
{
for(k = 0; k < 2; ++k)
{
line = LINE_PTR(i);
side = LINE_INFO(line)->side + k;
side = SIDE_PTR(line->sidenum[k])->info;
if(side->alignneighbor[0] || side->alignneighbor[1])
Con_Printf("Line %i/%i: l=%i r=%i\n", i, k,
side->alignneighbor[0] ? GET_LINE_IDX(side->
Expand Down

0 comments on commit ed604d3

Please sign in to comment.