Skip to content

Commit

Permalink
Fixed compile error in R_FindBottomTop()
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed May 28, 2012
1 parent 2ff209c commit b30f0e5
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 @@ -1003,8 +1003,8 @@ boolean R_FindBottomTop(LineDef* line, int side, SideDefSection section,
break; }

case SS_MIDDLE:
*low = vR_ZBottom = MAX_OF(bfloor->visHeight, ffloor->visHeight);
*hi = vR_ZTop = MIN_OF(bceil->visHeight, fceil->visHeight);
*low = MAX_OF(bfloor->visHeight, ffloor->visHeight);
*hi = MIN_OF(bceil->visHeight, fceil->visHeight);

if(!stretchMiddle)
{
Expand Down

0 comments on commit b30f0e5

Please sign in to comment.