Skip to content

Commit

Permalink
Fixed: mapdata-c++ > master branch merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Apr 25, 2013
1 parent 598e065 commit f576e29
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doomsday/client/include/map/bspleaf.h
Expand Up @@ -225,7 +225,7 @@ class BspLeaf : public de::MapElement
*
* @see fanBase()
*/
inline uint BspLeaf::numFanVertices() const
inline uint numFanVertices() const
{
// Are we to use one of the half-edge vertexes as the fan base?
return hedgeCount() + (fanBase()? 0 : 2);
Expand Down
2 changes: 1 addition & 1 deletion doomsday/client/include/map/sector.h
Expand Up @@ -390,7 +390,7 @@ class Sector : public de::MapElement,
*
* @see setLightColor(), setLightRed(), setLightGreen(), setLightBlue()
*/
inline void setLightColorComponent(int component, float newStrength);
void setLightColorComponent(int component, float newStrength);

/**
* Change the strength of the red component of the ambient light color in
Expand Down
2 changes: 1 addition & 1 deletion doomsday/client/include/map/surface.h
Expand Up @@ -365,7 +365,7 @@ class Surface : public de::MapElement
*
* @see setTintColor(), setTintRed(), setTintGreen(), setTintBlue()
*/
inline void setTintColorComponent(int component, float newStrength);
void setTintColorComponent(int component, float newStrength);

/**
* Change the strength of the red component of the tint color for the surface.
Expand Down
2 changes: 1 addition & 1 deletion doomsday/client/src/map/hedge.cpp
Expand Up @@ -527,7 +527,7 @@ void WallDivs_AssertInRange(walldivs_t *wd, coord_t low, coord_t hi)
DENG2_ASSERT(node->height >= low && node->height <= hi);
}
#else
DENG2_UNUSED3(wd, ow, hi);
DENG2_UNUSED3(wd, low, hi);
#endif
}

Expand Down

0 comments on commit f576e29

Please sign in to comment.