diff --git a/projects/mtg/src/WResourceManager.cpp b/projects/mtg/src/WResourceManager.cpp index 4240df09f..2df9ffb7e 100644 --- a/projects/mtg/src/WResourceManager.cpp +++ b/projects/mtg/src/WResourceManager.cpp @@ -832,11 +832,15 @@ void ResourceManagerImpl::InitFonts(const std::string& inLang) } mFontFileExtension = kExtension_png; - LoadWFont("simon", 11, Fonts::MAIN_FONT + idOffset); - GetWFont(Fonts::MAIN_FONT)->SetTracking(-1); + + #if defined (PSP) + LoadWFont("pspsimon", 11, Fonts::MAIN_FONT + idOffset); + GetWFont(Fonts::MAIN_FONT)->SetTracking(-1); LoadWFont("pspf3", 16, Fonts::MENU_FONT + idOffset); #else + LoadWFont("simon", 11, Fonts::MAIN_FONT + idOffset); + GetWFont(Fonts::MAIN_FONT)->SetTracking(-1); LoadWFont("f3", 16, Fonts::MENU_FONT + idOffset); #endif LoadWFont("magic", 16, Fonts::MAGIC_FONT + idOffset);