3 dots doesn't need to be a separate icon (running low on icon space)

This commit is contained in:
jacob1 2016-07-17 17:13:52 -04:00
parent 17398dd201
commit b8cdf4ae2f

View File

@ -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;
}