Skip to content

Commit

Permalink
3 dots doesn't need to be a separate icon (running low on icon space)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Jul 17, 2016
1 parent 17398dd commit b8cdf4a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/gui/game/SampleTool.cpp
Expand Up @@ -16,7 +16,9 @@ VideoBuffer * SampleTool::GetIcon(int toolID, int width, int height)
}
}
newTexture->SetCharacter((width/2)-5, (height/2)-5, 0xE6, 255, 255, 255, 255);
newTexture->BlendCharacter((width/2)-5, (height/2)-5, 0xE7, 100, 180, 255, 255);
newTexture->BlendPixel(10, 9, 100, 180, 255, 255);
newTexture->BlendPixel(11, 8, 100, 180, 255, 255);
newTexture->BlendPixel(12, 7, 100, 180, 255, 255);
return newTexture;
}

Expand Down

0 comments on commit b8cdf4a

Please sign in to comment.