diff --git a/projects/mtg/bin/Res/graphics/blitz_unlocked.png b/projects/mtg/bin/Res/graphics/blitz_unlocked.png new file mode 100644 index 000000000..d0adab0ee Binary files /dev/null and b/projects/mtg/bin/Res/graphics/blitz_unlocked.png differ diff --git a/projects/mtg/bin/Res/graphics/hermit_unlocked.png b/projects/mtg/bin/Res/graphics/hermit_unlocked.png new file mode 100644 index 000000000..9be86fa33 Binary files /dev/null and b/projects/mtg/bin/Res/graphics/hermit_unlocked.png differ diff --git a/projects/mtg/bin/Res/graphics/pspmagic.dat b/projects/mtg/bin/Res/graphics/pspmagic.dat new file mode 100644 index 000000000..82f350da0 Binary files /dev/null and b/projects/mtg/bin/Res/graphics/pspmagic.dat differ diff --git a/projects/mtg/bin/Res/graphics/pspmagic.png b/projects/mtg/bin/Res/graphics/pspmagic.png new file mode 100644 index 000000000..49e9d11db Binary files /dev/null and b/projects/mtg/bin/Res/graphics/pspmagic.png differ diff --git a/projects/mtg/bin/Res/graphics/pspmenubgdeckeditor.jpg b/projects/mtg/bin/Res/graphics/pspmenubgdeckeditor.jpg new file mode 100644 index 000000000..7e8b5f325 Binary files /dev/null and b/projects/mtg/bin/Res/graphics/pspmenubgdeckeditor.jpg differ diff --git a/projects/mtg/bin/Res/graphics/stonehewer_unlocked.png b/projects/mtg/bin/Res/graphics/stonehewer_unlocked.png new file mode 100644 index 000000000..2ea1ef4fa Binary files /dev/null and b/projects/mtg/bin/Res/graphics/stonehewer_unlocked.png differ diff --git a/projects/mtg/bin/Res/rules/awards.dat b/projects/mtg/bin/Res/rules/awards.dat index 9fbb4bd86..bb9cc606f 100644 --- a/projects/mtg/bin/Res/rules/awards.dat +++ b/projects/mtg/bin/Res/rules/awards.dat @@ -10,6 +10,7 @@ unlock_condition=type(land|myBattlefield)~equalto~8 [award] name=Hermit Druid Mode id=prx_timreh +unlock_img=hermit_unlocked.png unlock_text=Hermit Druid Basic Unlocked trophyroom_text=Won with less than 10 lands. unlock_condition=type(land|myBattlefield)~lessthan~10 @@ -18,6 +19,7 @@ unlock_condition=type(land|myBattlefield)~lessthan~10 [award] name=Stone Hewer Mode id=prx_rewehenots +unlock_img=stonehewer_unlocked.png unlock_text=Stone Hewer Basic Unlocked teaser=Love Equipment and want a real challenge? Unlock Stone Hewer Basic:) trophyroom_text=Won with more than 10 equipments. @@ -27,6 +29,7 @@ unlock_condition=type(equipment|Battlefield)~morethan~10 [award] name=Blitzkrieg Mode id=prx_geirkztilb +unlock_img=blitz_unlocked.png unlock_text=Blitzkrieg Mode Unlocked teaser=Like to play fast? Unlock Blitzkrieg Mode :) trophyroom_text=Won with more than 18 lands. diff --git a/projects/mtg/include/WResourceManagerImpl.h b/projects/mtg/include/WResourceManagerImpl.h index c460be262..d759f943f 100644 --- a/projects/mtg/include/WResourceManagerImpl.h +++ b/projects/mtg/include/WResourceManagerImpl.h @@ -11,7 +11,7 @@ #include #if defined (PSP) -#define HUGE_CACHE_LIMIT 20000000 // Size of the cache for PSP (in bytes) - old value is 20mb - reverted +#define HUGE_CACHE_LIMIT 25000000 // Size of the cache for PSP (in bytes) - old value is 20mb - reverted #else #define HUGE_CACHE_LIMIT 60000000 // Size of the cache for Windows and Linux (in bytes) - old value is 20mb increased to 60mb #endif diff --git a/projects/mtg/src/DeckMenu.cpp b/projects/mtg/src/DeckMenu.cpp index 547b3e8d8..23a695581 100644 --- a/projects/mtg/src/DeckMenu.cpp +++ b/projects/mtg/src/DeckMenu.cpp @@ -151,7 +151,10 @@ void DeckMenu::RenderBackground() bgFilename << backgroundName << ".png"; #if defined (PSP) - bgFilename << "psppspdeckmenu.png"; + if(backgroundName == "menubgdeckeditor") + bgFilename << "pspmenubgdeckeditor.jpg"; + else + bgFilename << "pspdeckmenu.png"; #endif static bool loadBackground = true; diff --git a/projects/mtg/src/WResourceManager.cpp b/projects/mtg/src/WResourceManager.cpp index 6f24c030b..cf21696c7 100644 --- a/projects/mtg/src/WResourceManager.cpp +++ b/projects/mtg/src/WResourceManager.cpp @@ -842,12 +842,13 @@ void ResourceManagerImpl::InitFonts(const std::string& inLang) LoadWFont("pspsimon", 11, Fonts::MAIN_FONT + idOffset); GetWFont(Fonts::MAIN_FONT)->SetTracking(-1); LoadWFont("pspf3", 16, Fonts::MENU_FONT + idOffset); + LoadWFont("pspmagic", 16, Fonts::MAGIC_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); +#endif LoadWFont("smallface", 7, Fonts::SMALLFACE_FONT + idOffset); }