Skip to content

Commit

Permalink
Fixed|Renderer: Errors in debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Oct 30, 2016
1 parent bc2b64b commit eaa70a3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions doomsday/apps/client/src/render/walledge.cpp
Expand Up @@ -461,8 +461,6 @@ struct WallEdge::Impl : public IHPlane
// Implements IHPlane
Event const &at(EventIndex index) const
{
DENG2_ASSERT(events);

if(index >= 0 && index < interceptCount())
{
return events.at(index);
Expand Down Expand Up @@ -600,7 +598,7 @@ struct WallEdge::Impl : public IHPlane

void prepareEvents()
{
DENG2_ASSERT(self.isValid());
DENG2_ASSERT(self->isValid());
DENG2_ASSERT(events.isEmpty());

//clearIntercepts();
Expand Down

0 comments on commit eaa70a3

Please sign in to comment.