summaryrefslogtreecommitdiff
path: root/src/gui/shoplistbox.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2006-12-24 00:05:26 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2006-12-24 00:05:26 +0000
commit166e9864f97275b1539edd8e89b271105f2fa04a (patch)
tree062a3a6e1251dfbe0fd5be98fbb405d2a422e6b3 /src/gui/shoplistbox.cpp
parent1e6f5283eceff138873ec54159ad8f716ed39b45 (diff)
downloadmana-client-166e9864f97275b1539edd8e89b271105f2fa04a.tar.gz
mana-client-166e9864f97275b1539edd8e89b271105f2fa04a.tar.bz2
mana-client-166e9864f97275b1539edd8e89b271105f2fa04a.tar.xz
mana-client-166e9864f97275b1539edd8e89b271105f2fa04a.zip
Major rendering performance increase in software mode, by not using RLE
compression on loaded images while most of the time, we're only drawing a small subimage of them. Also, don't try to draw an icon when it is not defined or failed to load properly.
Diffstat (limited to 'src/gui/shoplistbox.cpp')
-rw-r--r--src/gui/shoplistbox.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp
index f5581323..4821067c 100644
--- a/src/gui/shoplistbox.cpp
+++ b/src/gui/shoplistbox.cpp
@@ -89,7 +89,11 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics)
if (mShopItems)
{
- graphics->drawImage(mShopItems->at(i).image, 1, y);
+ Image *icon = mShopItems->at(i).image;
+ if (icon)
+ {
+ graphics->drawImage(icon, 1, y);
+ }
}
graphics->drawText(mListModel->getElementAt(i), ITEM_ICON_SIZE + 5,
y + (ITEM_ICON_SIZE - getFont()->getHeight()) / 2);