diff --git a/desktop_version/src/Graphics.cpp b/desktop_version/src/Graphics.cpp index d0e0eebc..3b79f5e9 100644 --- a/desktop_version/src/Graphics.cpp +++ b/desktop_version/src/Graphics.cpp @@ -380,19 +380,19 @@ void Graphics::bprint( int x, int y, std::string t, int r, int g, int b, bool ce { //printmask(x, y, t, cen); - //Print(x, y - 1, t, 0, 0, 0, cen); - //if (cen) - //{ - // //TODO find different - // PrintOff(-1, y, t, 0, 0, 0, cen); - // PrintOff(1, y, t, 0, 0, 0, cen); - //} - //else - //{ - // Print(x -1, y, t, 0, 0, 0, cen); - // Print(x , y, t, 0, 0, 0, cen); - //} - //Print(x, y+1, t, 0, 0, 0, cen); + Print(x, y - 1, t, 0, 0, 0, cen); + if (cen) + { + //TODO find different + PrintOff(-1, y, t, 0, 0, 0, cen); + PrintOff(1, y, t, 0, 0, 0, cen); + } + else + { + Print(x -1, y, t, 0, 0, 0, cen); + Print(x +1, y, t, 0, 0, 0, cen); + } + Print(x, y+1, t, 0, 0, 0, cen); Print(x, y, t, r, g, b, cen); }