From b8cdf4ae2fb5e1398eb7733a2e386df122b40d55 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Sun, 17 Jul 2016 17:13:52 -0400 Subject: [PATCH] 3 dots doesn't need to be a separate icon (running low on icon space) --- src/gui/game/SampleTool.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui/game/SampleTool.cpp b/src/gui/game/SampleTool.cpp index b914b1c7a..fa2003ce2 100644 --- a/src/gui/game/SampleTool.cpp +++ b/src/gui/game/SampleTool.cpp @@ -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; }