diff --git a/desktop_version/src/Graphics.cpp b/desktop_version/src/Graphics.cpp index 124fbd61..3a7dd7c5 100644 --- a/desktop_version/src/Graphics.cpp +++ b/desktop_version/src/Graphics.cpp @@ -3000,14 +3000,6 @@ void Graphics::bigrprint(int x, int y, std::string& t, int r, int g, int b, bool x -= (len(t)); - if (r < -1) r = -1; - if (g < 0) g = 0; - if (b < 0) b = 0; - if (r > 255) r = 255; - if (g > 255) g = 255; - if (b > 255) b = 255; - ct.colour = getRGB(r, g, b); - if (cen) { x = std::max(160 - (int((len(t)/ 2.0)*sc)), 0 );