From 480d6cf60dcd623905273bf05321d2c5ea8e3ceb Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 20 Dec 2013 13:32:07 +0300 Subject: Remove advanced fonts loading. Because it may not work in some OS. --- src/gui/sdlfont.cpp | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/gui/sdlfont.cpp b/src/gui/sdlfont.cpp index 74ae3ef88..3998ffcd2 100644 --- a/src/gui/sdlfont.cpp +++ b/src/gui/sdlfont.cpp @@ -30,9 +30,7 @@ #include "resources/image.h" #include "resources/imagehelper.h" -#ifndef USE_SDL2 #include "resources/resourcemanager.h" -#endif #include "resources/surfaceimagehelper.h" #include "utils/paths.h" @@ -399,15 +397,16 @@ SDLFont::~SDLFont() TTF_Font *SDLFont::openFont(const char *const name, const int size) { -#ifdef USE_SDL2 - SDL_RWops *const rw = MPHYSFSRWOPS_openRead(name); - if (!rw) - return nullptr; - return TTF_OpenFontIndexRW(rw, 1, size, 0); -#else +// disabled for now because some systems like gentoo cant use it +//#ifdef USE_SDL2 +// SDL_RWops *const rw = MPHYSFSRWOPS_openRead(name); +// if (!rw) +// return nullptr; +// return TTF_OpenFontIndexRW(rw, 1, size, 0); +//#else return TTF_OpenFontIndex(ResourceManager::getInstance()->getPath( name).c_str(), size, 0); -#endif +//#endif } void SDLFont::loadFont(std::string filename, -- cgit v1.2.3-70-g09d2