Removing the feature that loads the "big" card instead of the thumbnail when the thumbnail does not exist. Too many people using incorrect HQ packages are complaining about performance issues, so this will make the problem go away, and force people creating those packages to make them correctly

This commit is contained in:
wagic.the.homebrew
2011-07-13 12:58:21 +00:00
parent 7775a1e39f
commit fe98b3ca68

View File

@@ -154,11 +154,6 @@ void CardGui::Render()
bool alternate = true;
JQuadPtr quad = WResourceManager::Instance()->RetrieveCard(card, CACHE_THUMB);
#if defined (WIN32) || defined (LINUX)
//On pcs we render the big image if the thumbnail is not available
if (!quad.get())
quad = WResourceManager::Instance()->RetrieveCard(card);
#endif
if (quad.get())
alternate = false;
else