Add check to not crash when a kart has a null icon

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@12397 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2013-01-20 20:28:47 +00:00
parent f3e4a30c9c
commit 9d09e69b69

View File

@ -970,18 +970,21 @@ void RaceResultGUI::displayHighScores()
const std::string &icon_path = prop->getAbsoluteIconFile(); const std::string &icon_path = prop->getAbsoluteIconFile();
video::ITexture* kart_icon_texture = irr_driver->getTexture( icon_path ); video::ITexture* kart_icon_texture = irr_driver->getTexture( icon_path );
core::recti source_rect(core::vector2di(0,0), if (kart_icon_texture != NULL)
kart_icon_texture->getSize()); {
core::recti source_rect(core::vector2di(0,0),
kart_icon_texture->getSize());
core::recti dest_rect(current_x, current_y, core::recti dest_rect(current_x, current_y,
current_x+m_width_icon, current_y+m_width_icon); current_x+m_width_icon, current_y+m_width_icon);
irr_driver->getVideoDriver()->draw2DImage( irr_driver->getVideoDriver()->draw2DImage(
kart_icon_texture, dest_rect, kart_icon_texture, dest_rect,
source_rect, NULL, NULL, source_rect, NULL, NULL,
true); true);
current_x += m_width_icon + m_width_column_space; current_x += m_width_icon + m_width_column_space;
}
} }
// draw the player name // draw the player name