diff options
-rw-r--r-- | src/gui/sdlfont.cpp | 17 |
1 files 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, |