Removed warnings on VS.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/irrlicht@3394 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2009-04-16 10:35:35 +00:00
parent 956178350f
commit c603d48a06

View File

@ -461,11 +461,11 @@ void Skin::drawGaugeFill(const core::rect< s32 > &rect, Widget* widget, bool foc
GaugeWidget* w = dynamic_cast<GaugeWidget*>(widget);
// the width of an handle is about 0.844 the height in the current skin. FIXME - don't hardcode.
const int handle_size = widget->h*0.844;
const int handle_size = (int)(widget->h*0.844f);
// the 'rect' argument will be too small, because irrlicht has no suitable gauge component, so i used a scrollbar
const core::rect< s32 > dest_area = core::rect< s32 >(widget->x+handle_size, widget->y,
widget->x + handle_size + (widget->w - 2*handle_size)*w->getValue(),
widget->x + handle_size + (int)((widget->w - 2*handle_size)*w->getValue()),
widget->y + widget->h);
const int texture_w = m_tex_gaugefill->getSize().Width;