From c3159160fa3f3091f06b32bc41a57bc2969903eb Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sat, 8 Jan 2011 18:57:21 +0200 Subject: [PATCH] Fixed (maybe) segfault if font is not found --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index a0da103c..e6445f4a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1440,6 +1440,8 @@ int main(int argc, char *argv[]) gui::IGUIFont* font = guienv->getFont(porting::getDataPath("fontlucida.png").c_str()); if(font) skin->setFont(font); + // If font was not found, this will get us one + font = skin->getFont(); u32 text_height = font->getDimension(L"Hello, world!").Height; dstream<<"text_height="<