diff options
Diffstat (limited to 'src/textrenderer.h')
-rw-r--r-- | src/textrenderer.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/textrenderer.h b/src/textrenderer.h index fccdd3c7..505cbfab 100644 --- a/src/textrenderer.h +++ b/src/textrenderer.h @@ -32,18 +32,18 @@ */ class TextRenderer { - public: +public: /** * Renders a specified text. */ - static inline void renderText(gcn::Graphics *graphics, - const std::string &text, - int x, int y, - gcn::Graphics::Alignment align, - const gcn::Color &color, - gcn::Font *font, - bool outline = false, - bool shadow = false) + static void renderText(gcn::Graphics *graphics, + const std::string &text, + int x, int y, + gcn::Graphics::Alignment align, + const gcn::Color &color, + gcn::Font *font, + bool outline = false, + bool shadow = false) { graphics->setFont(font); |