Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Apr 19, 2013
1 parent 2f3c4eb commit a66549d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doomsday/client/src/map/line.cpp
Expand Up @@ -367,7 +367,7 @@ void Line::Side::chooseSurfaceTintColors(int sectionId, Vector3f const **topColo
*topColor = &middle().tintColor();
*bottomColor = 0;
}
break;
return;

case Top:
if(isFlagged(SDF_BLENDTOPTOMID))
Expand All @@ -380,7 +380,7 @@ void Line::Side::chooseSurfaceTintColors(int sectionId, Vector3f const **topColo
*topColor = &top().tintColor();
*bottomColor = 0;
}
break;
return;

case Bottom:
if(isFlagged(SDF_BLENDBOTTOMTOMID))
Expand All @@ -393,7 +393,7 @@ void Line::Side::chooseSurfaceTintColors(int sectionId, Vector3f const **topColo
*topColor = &bottom().tintColor();
*bottomColor = 0;
}
break;
return;

default: DENG_ASSERT(false); // Invalid section.
}
Expand Down

0 comments on commit a66549d

Please sign in to comment.