Don't assume icons have a period in their filename

actorid
Chris Robinson 12 years ago
parent 1f6055d54b
commit 3cff7b1e42

@ -121,8 +121,9 @@ void ItemView::update()
// image
MyGUI::ImageBox* image = backgroundWidget->createWidget<MyGUI::ImageBox>("ImageBox",
MyGUI::IntCoord(5, 5, 32, 32), MyGUI::Align::Default);
int pos = path.rfind(".");
path.erase(pos);
std::string::size_type pos = path.rfind(".");
if(pos != std::string::npos)
path.erase(pos);
path.append(".dds");
image->setImageTexture(path);
image->setNeedMouseFocus(false);

Loading…
Cancel
Save