From 2a7bcb217031e8f39c99c773fe64162e3dc41dee Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Sun, 7 Apr 2013 00:32:11 +0000 Subject: [PATCH] ifdef on simon font to up the res of simon. you will need to rename your old simon font to pspsimon only english is effected. --- projects/mtg/src/WResourceManager.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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);