Skip to content

Commit

Permalink
Disable color key on map images, fixes #782
Browse files Browse the repository at this point in the history
  • Loading branch information
Eli2 committed Nov 15, 2015
1 parent b84ca25 commit f264216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/MiniMap.cpp
Expand Up @@ -81,7 +81,7 @@ void MiniMap::getData(int showLevel) {
GetLevelNameByNum(showLevel, name);

sprintf(levelMap, "graph/levels/level%s/map", name);
m_levels[showLevel].m_texContainer = TextureContainer::Load(levelMap);
m_levels[showLevel].m_texContainer = TextureContainer::Load(levelMap, TextureContainer::NoColorKey);

if(m_levels[showLevel].m_texContainer) { // 4 pix/meter

Expand Down

0 comments on commit f264216

Please sign in to comment.