From 04c875120afdb7fadc765c82049a4fb07a99e14b Mon Sep 17 00:00:00 2001 From: mniip Date: Sun, 29 Apr 2018 04:23:03 +0300 Subject: [PATCH] fix some tools' icons breaking their bounding box --- src/graphics/Renderer.cpp | 2 +- src/gui/game/SampleTool.cpp | 2 +- src/gui/game/SignTool.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/graphics/Renderer.cpp b/src/graphics/Renderer.cpp index fda17c4c0..085b8e54d 100644 --- a/src/graphics/Renderer.cpp +++ b/src/graphics/Renderer.cpp @@ -677,7 +677,7 @@ VideoBuffer * Renderer::WallIcon(int wallID, int width, int height) newTexture->SetPixel(i, j, PIXR(pc), PIXG(pc), PIXB(pc), 255); } } - newTexture->SetCharacter(4, 2, 0x8D, 255, 255, 255, 255); + newTexture->AddCharacter(4, 2, 0x8D, 255, 255, 255, 255); for (i=width/3; iSetPixel(i, 7+(int)(3.9f*cos(i*0.3f)), 255, 255, 255, 255); diff --git a/src/gui/game/SampleTool.cpp b/src/gui/game/SampleTool.cpp index 3e38ea08f..e1c13b76d 100644 --- a/src/gui/game/SampleTool.cpp +++ b/src/gui/game/SampleTool.cpp @@ -15,7 +15,7 @@ VideoBuffer * SampleTool::GetIcon(int toolID, int width, int height) newTexture->SetPixel(x, y, PIXR(pc), PIXG(pc), PIXB(pc), 255); } } - newTexture->SetCharacter((width/2)-5, (height/2)-5, 0xE6, 255, 255, 255, 255); + newTexture->AddCharacter((width/2)-5, (height/2)-5, 0xE6, 255, 255, 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); diff --git a/src/gui/game/SignTool.cpp b/src/gui/game/SignTool.cpp index b319e72e0..50a6de564 100644 --- a/src/gui/game/SignTool.cpp +++ b/src/gui/game/SignTool.cpp @@ -268,7 +268,7 @@ VideoBuffer * SignTool::GetIcon(int toolID, int width, int height) newTexture->SetPixel(x, y, PIXR(pc), PIXG(pc), PIXB(pc), 255); } } - newTexture->SetCharacter((width/2)-5, (height/2)-5, 0xA1, 32, 64, 128, 255); + newTexture->AddCharacter((width/2)-5, (height/2)-5, 0xA1, 32, 64, 128, 255); newTexture->BlendCharacter((width/2)-5, (height/2)-5, 0xA0, 255, 255, 255, 255); return newTexture; }