diff options
-rw-r--r-- | src/gui/truetypefont.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/truetypefont.cpp b/src/gui/truetypefont.cpp index b4b839e9..f9e206bc 100644 --- a/src/gui/truetypefont.cpp +++ b/src/gui/truetypefont.cpp @@ -86,13 +86,14 @@ TrueTypeFont::TrueTypeFont(const std::string &filename, int size, int style) ++fontCounter; mFont = TTF_OpenFont(filename.c_str(), size); - TTF_SetFontStyle (mFont, style); if (!mFont) { throw GCN_EXCEPTION("SDLTrueTypeFont::SDLTrueTypeFont: " + std::string(TTF_GetError())); } + + TTF_SetFontStyle (mFont, style); } TrueTypeFont::~TrueTypeFont() |