Skip to content

Commit

Permalink
Fixed incorrect DMU property.
Browse files Browse the repository at this point in the history
  • Loading branch information
danij committed Feb 2, 2007
1 parent 1c65ba7 commit 20ce14c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/common/src/am_map.c
Expand Up @@ -1594,7 +1594,7 @@ static void AM_drawWalls(boolean glowmode)
subColor = 0;
}

for(i = 0; i < P_GetIntp(ssec, DMU_LINE_COUNT); ++i)
for(i = 0; i < P_GetIntp(ssec, DMU_SEG_COUNT); ++i)
{
seg = P_GetPtrp(ssec, DMU_SEG_OF_SUBSECTOR | i);

Expand Down

0 comments on commit 20ce14c

Please sign in to comment.